Struggling to integrate Michalsnik's Animate On Scroll plugin into my Wordpress site. Followed the instructions to add the "data-aos" attribute to a div, but the element ends up being blank instead of fading in.
<div class="textbox center branch-bg" data-aos="fade" data-aos-duration="600">
Immerse Yourself
</div>
Here's my attempt at the installation:
1) Included
<link href="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.css" rel="stylesheet">
and
<script src="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.js"></script>
in my header file to load the CSS and Javascript.
2) Added the
AOS.init({disable: 'mobile'});
function to my script to activate it (mobile disabled)
Link to the webpage with an anchor. First article should fade in on scroll but appears blank.
Did I miss a step in the installation process? Any other mistakes I might be making?
Thank you for any help!