Swipe.js中swipe.scrollTo属性中的函数最后返回this干嘛????

来源:2-3 页面切换部分的代码封装

织梦_

2017-01-08 20:34

    swipe.scrollTo = function(x, speed) {

        //执行动画移动

        element.css({

            'transition-timing-function' : 'linear',

            'transition-duration'        : speed + 'ms',

            'transform'                  : 'translate3d(-' + x + 'px,0px,0px)'

        });

        console.log(this);

        return this;

    };


写回答 关注

1回答

  • 泪o0无痕
    2017-01-10 10:41:13
    已采纳

    这是为了链式调用,所以最后会返回该对象

    JohnDo...

    去掉没什么影响嘛

    2017-02-05 21:16:58

    共 2 条回复 >

H5+JS+CSS3实现七夕言情

为七夕节准备的H5+JS+CSS3特效案例,由浅入深案例拆分讲解

211525 学习 · 540 问题

查看课程

相似问题