[js]圆周运动&类s运动

// 圆周运动
function circularMove(obj){
    var deg = 0;
    var timer = setInterval(function(){
        deg++;
        var x = 100 * Math.cos(deg * Math.PI/180);
        var y = 100 * Math.sin(deg * Math.PI/180);
        obj.style.left = x + 200 + 'px';
        obj.style.top = y + 200 + 'px';
    }, 10);
}

// 类s运动
function sMove(obj){
    var x = 0;
    var timer = setInterval(function(){
        x++;
        var y = 50 * Math.sin(2 * x * Math.PI / 180);
        obj.style.left = x + 200 + 'px';
        obj.style.top = y + 200 + 'px';
    },10);
}

你可能感兴趣的:(前端,javascript)