1. 程式人生 > >原生JS封裝變速移動函式

原生JS封裝變速移動函式

思想:如果當前位置為now,目標距離為aim,那麼每次移動的距離step為(aim-now)/10,如果step大於0,則想上取整,step=Math.ceil(step);反之則向下取整,step=Math.floor(step);
程式碼如下:

//變速移動函式封裝
function movecs(ele,aim){
    //清除定時器
    clearInterval(ele.changespead);

    ele.changespead=setInterval(function() {
        //獲取當前位置
        var now = ele.offsetLeft;
        //設定每次移動的單位距離
        var step = (aim - now) / 10;
        step = step > 0 ? Math.ceil(step) : Math.floor(step);

        //當前位置改變
        now += step;

        if (Math.abs(now - aim) > Math.abs(step)) {
            ele.style.left = now + 'px';
        }
        else {
            ele.style.left = aim + 'px';
        }
    },20);
}