Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wow.js is not working

I have just tried to implement wow.js to my site but it wont work. I have linked everything but i don't know why it isn't working. I even added the wow.js and linked it to the html but there still seems to be nothing that is working. I also added the animate.css and still there is no effect.

HTML

<!DOCTYPE HTML>
<html>

<head>        
    <link rel="stylesheet" type="text/css" href="style.css">
    <link rel="stylesheet" type="text/css" href="animate.css">
    <script language="javascript" type="text/javascript"src="javascript.js"></script>
    <script language="javascript" type="text/javascript" src="wow.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

    <title> Vids </title>
    <a href="index.html"> <header>  <img src="images/Logo.png" >    </header></a>

    </head>



<body>

   <div class="vids-title">

       <p>Vids</p>

   </div>



   <div class="video-1 wow slideInRight">
       <h>Shia LaBeouf delivers the most intense motivational speech of all-time</h>
       <iframe width="550" height="435"
src="https://www.youtube.com/embed/nuHfVn_cfHU">
</iframe>

   </div>


    <div class="video-2 wow slideInLeft">

        <h>Truth or Drink (Exes)</h>
        <iframe width="550" height="435"
src="https://www.youtube.com/embed/pxYpvNMbdXQ">
</iframe>

    </div>

    <div class="video-3 wow slideInRight">

        <h>Walker broke his arm</h>
        <iframe width="550" height="435"
src="https://www.youtube.com/embed/5-NXguyFFko">
</iframe>

    </div>

javascript

$(function(){
new WOW().init(); 

});
like image 280
Gusic industry Avatar asked Oct 25 '25 20:10

Gusic industry


1 Answers

There is nothing wrong with your code - its working fine https://jsfiddle.net/k3qaoyxe/
I included the directories as external resources and then

$(function(){
  new WOW().init(); 
});

worked fine.

Are you sure you have included all the libraries properly and they are loading correctly - check the network tab in your developer console.
Libraries included from cdn:

https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.3.0/animate.css
https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js
https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.js

like image 145
Craicerjack Avatar answered Oct 28 '25 11:10

Craicerjack