I've tried everything but I can't seem to get scrollorama to work with this and I'm not sure why. There is an error in the console saying "Uncaught ReferenceError: scrollorama is not defined"
JavaScript:
scrollorama.animate('.navigation',{
delay:993, duration:993, property:'top', start:100, end:-300
});
Live demo:
Thank you so much!
Uncaught ReferenceError: scrollorama is not defined
The console is telling you your problem. You have not defined
scrollorama
.Define
scrollorama
, ex:It's not defined, as I see in the page with your JS: http://matthunzinger.com/js.js
All you have is
Because you have a class called
slide
, I'm guessing you need to add this before your code:Hold on, wait
I suggest that before you go on, you read the scrollorama main page (I got the answer from here)