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;
};
这是为了链式调用,所以最后会返回该对象