急急急
只有那个画布呀π_π,出来效果圆啊,各位拜托拜托!!!!!谢谢谢谢
只有那个画布呀π_π,出来效果圆啊,各位拜托拜托!!!!!谢谢谢谢
2017-03-08
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>canvas clock</title>
<style>
div{
text-align: center;
margin-top: 250px;
}
#clock{
border:10px solid #ccc;
}
</style>
</head>
<body>
<div>
<canvas id="clock" height="400px" width="400px"></canvas>
</div>
</body>
<script>
var dom = document.getElementById("clock");
var ctx = dom.getContext('2d');
var width = ctx.canvas.width;
var height = ctx.canvas.height;
var r = width / 2;
function drawBackground(){
"use strict";
ctx.translate(r,r);
ctx.beginPath();
ctx.lineWidth = 10;
ctx.arc(0,0,r-5,0,2*Math.PI,false);
ctx.stroke();
}
drawBackground()
</script>
</html>
这是按你的代码基本一摸一样打的 我是可以出来的 你可以复制去试试 不行那就换浏览器 火狐或者chrome
举报