美文网首页
圆形轨迹函数

圆形轨迹函数

作者: 邱帅123 | 来源:发表于2017-10-08 13:54 被阅读0次

    # 圆形轨迹


    function yuan(obj,x,y,s){

    var num = 0;

    setInterval(function(){

    var a = Math.sin(num*Math.PI/180)*s;

    console.log("a:"+a)

    var b = Math.cos(num*Math.PI/180)*s;

    console.log("b:"+b)

    obj.style.top=y+a+"px";

    obj.style.left=(x-250)+b+"px";

    num++;

    if (num>360)

    {

    num=0

    }

    }, 50)

    }


    相关文章

      网友评论

          本文标题:圆形轨迹函数

          本文链接:https://www.haomeiwen.com/subject/cnxfyxtx.html