微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

canvas 绘图详解4


canvas 绘图详解


/* 图形变换  位移 translatex,y) 会叠加  旋转 rotate (deg)  缩放 scale (sx,sy)  */  /* * transform(a,b,c,d,e,f) * * a c e * b d f * 0 0 1 * /////////// * * a d 水平、垂直 缩放 * b c 水平、垂直 倾斜 * e f 水平、垂直 位移 * * * setTransform() * */



<!DOCTYPE html>
<html>
<head lang="en">
    <Meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title></title>
</head>
<body>

<canvas id="canvas" style="display: block;margin: 0 auto;border: 1px solid #aaa;">
    你的浏览器不支持canvas
</canvas>

<script>

    window.onload = function () {
        var canvas = document.getElementById("canvas");
        var context = canvas.getContext("2d");
        canvas.width = 1024;
        canvas.height = 768;


//        context.fillStyle = "yellow";
//        context.translate(300,200);
//        context.rotate (40);
//        context.scale(3,0.8);
//        context.fillRect(0,200,200);


        context.fillStyle = "black";
        context.fillRect(0,canvas.width,canvas.height);

        for(var i=0; i < 200; i++){

            var R = Math.random() * 10 + 10;
            var x = Math.random() * canvas.width;
            var y = Math.random() * canvas.height;
            var rot = Math.random() * 360;

            drawStar(context,R,x,y,rot);
        }





    }


    // r 内圆半径  = R 外圆半径  (x,y) Star 中心坐标  rot 角度
    function drawStar(context,rot){

        context.save();
        context.translate(x,y);
        context.rotate(rot / 180 * Math.PI);

        context.scale(R,R);

        starPath(context);
        // 绘制 大小为R  (x,y) Star 中心坐标  rot 角度 的五角星


        /*   图形变换
                位移  translate(x,y)   会叠加
                旋转  rotate (deg)
                缩放  scale (sx,sy)
         */

        /*
        *    transform(a,f)
        *
        *    a  c  e
        *    b  d  f
        *    0  0  1
        *    ///////////
        *
        *    a  d   水平、垂直 缩放
        *    b  c   水平、垂直 倾斜
        *    e  f   水平、垂直 位移
        *
        *
        *   setTransform()
        * */


        context.fillStyle = "#fd5";
     //   context.strokeStyle = "#ddd";
      //  context.linewidth = 1;
     //   context.lineJoin = "round";
        context.fill();
      //  context.stroke();

        context.restore();

        /**
         *
         */


    }


    function starPath(context){
        context.beginPath();
        for(var i =0; i < 5; i++){
            context.lineto(Math.cos((18 + i * 72) / 180 * Math.PI),-Math.sin((18 + i * 72) / 180 * Math.PI));
            context.lineto(Math.cos((54 + i * 72) / 180 * Math.PI) * 0.5,-Math.sin((54 + i * 72 ) / 180 * Math.PI) * 0.5);
        }
        context.closePath();
    }



</script>
</body>
</html>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。