<canvas>
优质
小牛编辑
121浏览
2023-12-01
描述 (Description)
HTML 标签用于使用脚本绘制图形,动画等。
例子 (Example)
<!DOCTYPE html>
<html>
<head>
<title>HTML Canvas Tag</title>
</head>
<body>
<canvas id = "newCanvas">Your browser does not support canvas tag.</canvas>
<script>
var c = document.getElementById('newCanvas');
var ctx = c.getContext('2d');
ctx.fillStyle = '#00FD00';
ctx.fillRect(0,0,200,60);
</script>
</body>
</html>
全局属性 (Global Attributes)
此标记支持HTML Attribute Reference描述的所有全局属性
具体属性 (Specific Attributes)
HTML 标记还支持以下附加属性 -
属性 | 值 | 描述 |
---|---|---|
高度 | pixels | 指定画布的高度。 |
宽度 | pixels | 指定画布的宽度。 |
事件属性 (Event Attributes)
此标记支持HTML Events Reference中描述的所有事件属性
浏览器支持 (Browser Support)
铬 | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Yes | Yes | Yes | Yes | Yes | ? |