scrollTo参数

来源:4-3 页面与人物之间形成的视觉差效果

小生有理

2015-08-19 16:57

 scrollTo的参数封装的是(x,speed)  ,为什么index里的 scrollTo是(speed,x)

写回答 关注

3回答

  • 慕哥6404025
    2015-12-24 09:01:28

    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我想问一下为什么会出错

  • Caesar_wyf
    2015-09-13 10:36:30

    function scrollTo(time,proportionX) {

                var distX = container.width() * proportionX;

                swipe.scrollTo(distX,time);

            }

    这段写的太迷惑了,完全可以把函数名改成别的,总会把它和函数里的scrollTo弄混。

    swipe.scrollTo(distX,time);才是滚动背景    


  • 艾伦Aaron
    2015-08-19 17:15:05

    你确定没错? 我看到的

     swipe.scrollTo(distX, time);


H5+JS+CSS3实现七夕言情

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

211523 学习 · 540 问题

查看课程

相似问题