matthieua / WOW

Reveal CSS animation as you scroll down a page
https://www.delac.io/WOW/
9.91k stars 4.13k forks source link

WOW animation #321

Open recruiters-websites opened 6 years ago

recruiters-websites commented 6 years ago

For some reasons the animations only seem to work on the homepage but not on the subpages.

http://duvarigroup.flywheelsites.com

darkwd commented 6 years ago

screenshot_260

look at screenshot above. when i try to open page "WHO WE ARE", browser try to get wow lib wrong way, because you write wrong path to lib.

U wrote relative path and browser try to get lib from

... who-we-are/WOW-master/dist ...

<!-- this is your code -->
<link rel="stylesheet" href="WOW-master/css/libs/animate.css">
<script src="WOW-master/dist/wow.min.js"></script>

but u need to get lib from .. WOW-master/dist .. try to

<link rel="stylesheet" href="/WOW-master/css/libs/animate.css">
<script src="/WOW-master/dist/wow.min.js"></script>

if u don't see the differense, please, read about absolute and relative path in net.

recruiters-websites commented 6 years ago

This fixed the problem! Thanks so much!