zoukankan      html  css  js  c++  java
  • html5 canvas多个图像旋转

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>多个图像围绕中心点旋转</title>
    <script src="js/modernizr.js"></script>
    </head>
    
    <body>
    <script type="text/javascript">
    window.addEventListener('load',eventWindowLoaded,false);
    function eventWindowLoaded(){
        canvasApp();
    }
    function canvasSupport(){
        return Modernizr.canvas;
    }
    function canvasApp(){
        if(!canvasSupport()){
            return;
        }else{
            var theCanvas = document.getElementById('canvas')
            var context = theCanvas.getContext("2d")
    
        }
        drawScreen();
        function drawScreen(){
            
            
            context.setTransform(1,0,0,1,0,0);
            var angleInRadians = 45 * Math.PI / 180;
            var x = 50;
            var y = 100;
            var width = 40;
            var height = 40;
            context.translate(x+.5*width,y+.5*height);
            context.rotate(angleInRadians);
            context.fillStyle="red";
            context.fillRect(-.5*width,-.5*height,width,height);
            context.setTransform(1,0,0,1,0,0);
            var angleInRadians = 75 * Math.PI / 180;
            var x = 100;
            var y = 100;
            var width = 40;
            var height = 40;
            context.translate(x+.5*width,y+.5*height);
            context.rotate(angleInRadians);
            context.fillStyle="red";
            context.fillRect(-.5*width,-.5*height,width,height);
            context.setTransform(1,0,0,1,0,0);
            var angleInRadians = 90 * Math.PI / 180;
            var x = 150;
            var y = 100;
            var width = 40;
            var height = 40;
            context.translate(x+.5*width,y+.5*height);
            context.rotate(angleInRadians);
            context.fillStyle="red";
            context.fillRect(-.5*width,-.5*height,width,height);
            context.setTransform(1,0,0,1,0,0);
            var angleInRadians = 120 * Math.PI / 180;
            var x = 200;
            var y = 100;
            var width = 40;
            var height = 40;
            context.translate(x+.5*width,y+.5*height);
            context.rotate(angleInRadians);
            context.fillStyle="red";
            context.fillRect(-.5*width,-.5*height,width,height);
            
        }
        
    }
    
    
    </script>
    <canvas id="canvas" width="500" height="500">
    你的浏览器无法使用canvas
    小白童鞋;你的支持是我最大的快乐!!
    </canvas>
    </body>
    </html>

  • 相关阅读:
    dp(传球)
    最长上升子序列
    FromData获取表单数据
    php解决高并发问题
    php抽象类、接口、traint详解
    mysql、mongodb、redis 数据库之间的区别
    phpstorm2018 安装及破解方法
    phpstudy添加redis扩展
    mysql触发器trigger 实例详解
    mysql查询系列常考问题
  • 原文地址:https://www.cnblogs.com/LoveOrHate/p/4422555.html
Copyright © 2011-2022 走看看