There are currently 2 posts.
Font size: Small - 100% (Default)  Content converter: No conversion
 
Clicks Replies
1128 1
Vista的IE9支持canvas画布
巨大八爪鱼
武林盟主 二十一级
Reply
Floor 1 Posted at: 5/23/24 20:40
巨大八爪鱼
武林盟主 二十一级
Reply
Floor 2 Posted at: 5/23/24 20:40
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test canvas</title>
<script>
function drawPicture() {
    var canvas = document.querySelector("#myCanvas");
    var ctx = canvas.getContext("2d");
    ctx.fillStyle = "#FFCCDD";
    ctx.fillRect(0, 0, 200, 100);

    ctx.beginPath();
    ctx.arc(95, 50, 40, 0, 2 * Math.PI);
    ctx.stroke();

    ctx.font = "30px Arial";
    ctx.fillStyle = "cyan";
    ctx.fillText("Hello World", 10, 50);
}
</script>
</head>

<body onload="drawPicture()">
<canvas id="myCanvas" width="200" height="100" style="border: 1px solid black"></canvas>
</body>
</html>
Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.
(Shortcut key: Ctrl+Enter)
Post Information
Clicks: 1128 Replies: 1
Author: 巨大八爪鱼
Last reply: 巨大八爪鱼
Last reply time: 5/23/24 20:40
Announcements