我已经尝试了所有的东西,但我似乎无法使用scrolllorama来处理这个问题,我不知道为什么。控制台中出现错误“未捕获的ReferenceError:未定义scrolllorama”
JavaScript的:
scrollorama.animate('.navigation',{
delay:993, duration:993, property:'top', start:100, end:-300
});
现场演示:
非常感谢你!
答案 0 :(得分:3)
Uncaught ReferenceError: scrollorama is not defined
控制台告诉你你的问题。您尚未定义scrollorama
。
定义scrollorama
,例如:
var scrollorama = $.scrollorama({
blocks:'.scrollblock'
});
我没有定义,正如我在JS页面中看到的那样:http://matthunzinger.com/js.js
你所拥有的只是
scrollorama.animate('.navigation',{
delay:993, duration:993, property:'top', start:100, end:-300
});
因为你有一个名为slide
的类,我猜你需要在你的代码之前添加它:
var scrollorama = $.scrollorama({
blocks:'.slide'
});
我建议您在继续之前,阅读 scrollorama main page (I got the answer from here)