小生有理
2015-08-19 16:57
scrollTo的参数封装的是(x,speed) ,为什么index里的 scrollTo是(speed,x)
swipe.scrollTo = function (x, speed) {
elements.css({
'transition-timing-function': 'linear',
'transition-duration': speed + 'ms',
'transform': 'translate3d(-' + x + 'px,0px,0px)'
});
return this;
};
Uncaught TypeError: Cannot set property 'scrollTo' of undefined我想问一下为什么会出错
function scrollTo(time,proportionX) {
var distX = container.width() * proportionX;
swipe.scrollTo(distX,time);
}
这段写的太迷惑了,完全可以把函数名改成别的,总会把它和函数里的scrollTo弄混。
swipe.scrollTo(distX,time);才是滚动背景
你确定没错? 我看到的
swipe.scrollTo(distX, time);
H5+JS+CSS3实现七夕言情
211523 学习 · 540 问题
相似问题