There are currently 2 posts.
Font size: Small - 100% (Default)  Content converter: No conversion
 
Clicks Replies
1097 1
<canvas>标签最低支持的IE浏览器是IE9
巨大八爪鱼
武林盟主 二十一级
Reply
Floor 1 Posted at: 8/8/16 15:49
巨大八爪鱼
武林盟主 二十一级
Reply
Floor 2 Posted at: 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>

Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.
(Shortcut key: Ctrl+Enter)
Post Information
Clicks: 1097 Replies: 1
Author: 巨大八爪鱼
Last reply: 巨大八爪鱼
Last reply time: 8/8/16 15:50
Announcements