欢迎光临
我们一直在努力

使用html5的fillRect和setTransform画立方体

建站超值云服务器,限时71元/月

原理分析:
画三个长方形,顶部长方形和侧面长方形变形,然后将三个长方形移到合适的位置,这样一个长方体就完成了

代码如下:
<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>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 使用html5的fillRect和setTransform画立方体
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址