I got animate.css to work fine , but when i imported wow.js into my static folder, it did not function on the scroll or just in general. The animation part only works without the "wow" class.
As my website is built with django, im not sure if that has anything to do with it.
Here is the code that includes the animate and wow files.
<link rel="stylesheet" href="{% static 'css/animate.css' %}">
this is the only one that works:
<div class="container">
<h1 class="animate__animated animate__bounce" style="color:black;">An animated element</h1>
all of these do not work and i don't know what i am doing wrong:
</div>
<div class="container">
<h1 class="wow animate__bounce" style="color:black;">An animated element</h1>
</div>
<div class="container">
<h1 class="wow bounce" style="color:black;">An animated element</h1>
</div>
<div class="wow bounce">
<h1 class="wow bounce" style="color:black;">An animated element</h1>
</div>
I have these loaded in as well:
<script language="javascript" type="text/javascript" src="{% static 'js/wow.min.js' %}"></script>
<script>new WOW().init();</script>
Attached image of my folder hierarchy
The wow.js does not work wherever i put the containers on the page. All of this code is in my base.html folder (please refer to the image attached)
This is my console log:
[19/Jun/2020 17:46:10] "GET /favicon.ico HTTP/1.1" 404 4547
[19/Jun/2020 17:46:20] "GET / HTTP/1.1" 200 7917
[19/Jun/2020 17:46:20] "GET /static/css/master.css HTTP/1.1" 200
1631
[19/Jun/2020 17:46:20] "GET /static/css/animate.css HTTP/1.1" 200
95376
[19/Jun/2020 17:46:20] "GET /static/css/blog.css HTTP/1.1" 200 506
[19/Jun/2020 17:46:20] "GET /static/js/wow.min.js HTTP/1.1" 200 8155
[19/Jun/2020 17:46:20] "GET /media/blog_pic/markus-spiske-
qjnAnF0jIGk-unsplash.jpg HTTP/1.1" 200 634265
[19/Jun/2020 17:46:20] "GET /media/blog_pic/IMG_4779_1s6meGH.jpg
HTTP/1.1" 200 829413
[19/Jun/2020 17:46:20] "GET /media/blog_pic/kelly-sikkema-
lJrTJHzQjOs-unsplash.jpg HTTP/1.1" 200 162152
[19/Jun/2020 17:46:20] "GET /static/pictures/linkedin-logo.png
HTTP/1.1" 200 3346
Not Found: /favicon.ico
[19/Jun/2020 17:46:21] "GET /favicon.ico HTTP/1.1" 404 4547
On my website, they are further down with other information (i did not include as it would be too messy on this thread) but does not even animate when the "wow" class is in them or not.
If anyone could help, please let me know. Thanks