问答详情
源自:2-3 页面切换部分的代码封装

这章节中swipe.scrollTo = function(x, speed) 是什么意思?scrollTo()方法设置或返回被选元素的垂直滚动条位置 但是在这里代码表达的与滚动的关系是什么

//监控完成与移动

    swipe.scrollTo = function(x, speed) {

        //执行动画移动

        element.css({

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

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

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

        });

        return this;

    };


提问者:listenlo 2016-05-26 15:24

个回答

  • hello word
    2016-05-26 17:04:22
    已采纳

    这个函数是控制场景的,也就是背景也要走。人会看到场景就跑起来了。人就在真实的动画里啦