原理分析:
画三个长方形,顶部长方形和侧面长方形变形,然后将三个长方形移到合适的位置,这样一个长方体就完成了
代码如下:
<div style="width: 600px; margin: 0 auto; margin-top: 30px;">
<canvas id="myCanvas" width="600" height="350" style="border:1px solid #d3d3d3;">
你的浏览器不支持canvas....
</canvas></div>
<script>
var canvas = document.getElementById('myCanvas');
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.fillStyle="#0000ff";
ctx.fillRect(120,100,150,200);
ctx.closePath();
ctx.beginPath();
ctx.setTransform(1,0,-0.5,0.5,50,50);
ctx.fillStyle="red";
ctx.fillRect(120,0,150,100);
ctx.closePath();
ctx.beginPath();
ctx.setTransform(0,1,-0.5,0.5,320,-70);
ctx.fillStyle="green";
ctx.fillRect(120,0,200,100);
ctx.closePath();
</script>
中国· 上海
添加微信咨询
CopyRight©2009-2019 上海谷谷网络科技有限公司 All Rights Reserved. 沪ICP备11022482号-8
- top
- 在线咨询
-
添加微信咨询