Ty T.
Ty T.

Reputation: 586

parallax.js not working correctly

I am trying to put together parallax section scrolling using parallax.js. I cannot seem to get the sections to work correctly. I am following the tutorial they have at http://pixelcog.github.io/parallax.js/ but for some reason my code is not working correctly. Not sure if i'm missing something or if the code it not responding as it should. Can someone shed some light on this issue? my test code is listed at http://gynxprinting.com/test/

Upvotes: 1

Views: 4047

Answers (1)

maioman
maioman

Reputation: 18734

Since it's a Jquery plugin you'll also need to load Jquery,

try adding

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>

Upvotes: 1

Related Questions