Notice
Recent Posts
Recent Comments
SNOWFLAKES DRAWING PAPER
[HTML5] 캔버스 지원 여부 확인 본문
<?DOCTYPE html>
<html>
<p id="support">Your browser supports HTML5 Canvas!</p>
<script>
try
{
document.createElement("canvas").getContext("2d");
document.getElementById("support").innerHTML = "HTML5 캔버스 지원";
}
catch (e)
{
document.getElementById("support").innerHTML = "HTML5 캔버스 미지원";
}
</script>
</html>
'개발 > HTML5/CSS3' 카테고리의 다른 글
[HTML5] 모바일 사이트에서 onorientationchange 구현 (0) | 2015.01.25 |
---|---|
[CSS3] 기본 버튼 스타일 (0) | 2015.01.22 |
[HTML5] 로컬 저장소 (localStorage) 사용 (0) | 2015.01.22 |
[HTML5] Video Player Control (0) | 2015.01.03 |
[HTML5] Geolocation (0) | 2012.08.13 |
Comments