快捷导航
发新帖
返回列表
0 915
电梯直达  跳转到指定楼层

[提问] 问题

L1587997|中级会员 |勤币 273 |学币 0
发表于 2019-10-22 18:50 | 复制链接 | 打印 | 上一主题 | 下一主题
为什么我打的代码跟老师一样而且没有出错,但是页面的矩形我显示不出来
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>canvas</title>
<style>
  body{ background: #ccc;}
  #cvs{ background: #fff;}
</style>
<script>
window.onload=function(){

var c=document.getElementById("cvs");
var ctx=c.getContext("2d");
/*

ctx.fillStyle="red";  
ctx.fillRect(50,50,100,100);

ctx.strokeStyle="yellow"
ctx.strokeRect(100,100,150,150);

*/

ctx.fillStyle="red";
ctx.strokeStyle="green"
ctx.rect(50,50,100,100);
ctx.fill();
ctx.stroke();

ctx.clearRect(0,0,c.width,c.height);

}
</script>
</head>
<body>
     <canvas id="cvs" width="400" height="400"></canvas>
</body>
</html>

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
举报 使用道具
| 回复

共0个回复 最后回复于 2019-10-22 18:50

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表