这章节中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;
};