Settings | Sign in | Sign up

There are currently 2 posts.

<canvas>标签最低支持的IE浏览器是IE9

Floor 1 巨大八爪鱼 8/8/16 15:49
Floor 2 巨大八爪鱼 8/8/16 15:50

【代码】

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Canvas Test</title>
<style>
#canvas {
 border: 1px solid black;
}
</style>
<script>
function fun() {
 with (document.getElementById('canvas').getContext('2d')) {
  fillStyle = "#0000ff"; // blue
  fillRect(20, 20, 150, 100);
  clearRect(50, 50, 10, 10);
 }
}
</script>
</head>
<body onLoad="fun()">
<canvas height="300" width="300" id="canvas" onClick="alert(&quot;You have clicked me!&quot;)"></canvas>
</body>
</html>

Content converter:

Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.