问答详情
源自:3-4 元素运动实现

按照上面的去写鸟飞不走

按照上面的代码,但是飞不走啊~ 你们都是怎么处理的?

提问者:思如海 2016-03-03 10:07

个回答

  • TWT
    2016-05-17 19:55:12

    $("button").on("click",function(){
        /**
         * 通过transition的方式改变运动
         */
        $(".bird").transition({
            'right': '3em',
        }, 1000, 'linear',function(){
            alert("end")    
        })
    })


  • jokechen
    2016-03-04 23:40:44

    <canvas id="cvs" height="400"></canvas>

        <script type="text/javascript">

         //第一步:获取canvas元素

        var cvs = document.getElementById('cvs'); //画布

         //第二步:获取上下文

        var ctx = cvs.getContext('2d'); // 画笔

        //第三步:指定绘制线样式、颜色

        ctx.strokeStyle = "red";

        //第四步:绘制矩形,只有线。内容是空的

        ctx.strokeRect(10, 10, 190, 100);


        //以下演示填充矩形。

        ctx.fillStyle="blue";

        ctx.fillRect(110,120,100,100);

        

        </script>