Javascript WOW.js在我的本地服务器上工作,但在我的服务器上不工作

Javascript WOW.js在我的本地服务器上工作,但在我的服务器上不工作,javascript,jquery,html,animate.css,Javascript,Jquery,Html,Animate.css,我在我的网站中使用wow.js和animate.css制作动画,但是当我在这里测试local时效果很好,但是当我把它上传到我的服务器上时就完全没有了。。。 这是我的网站链接 我的js称之为wow.js var wow = new WOW( { boxClass: 'wow', animateClass: 'animated', offset: 0, mobile: false

我在我的网站中使用wow.js和animate.css制作动画,但是当我在这里测试local时效果很好,但是当我把它上传到我的服务器上时就完全没有了。。。 这是我的网站链接

我的js称之为wow.js

var wow = new WOW(
  {
    boxClass:     'wow',      
    animateClass: 'animated', 
    offset:       0,         
    mobile:       false        
  }
);
wow.init();
如果您查看404页,您将看到它在那里工作,下面是该页面工作的代码:

<h1 id="fittext3"  class="wow bounceIn">ERROR 404</h1>
在这里,另一个图像在我的索引页上不起作用:

    <div class="featurette" id="services">
        <img class="featurette-image img-responsive pull-left  wow bounceInLeft" src="img/customizacao.png" alt="Customizacao">
        <h2 class="featurette-heading">Customização de LMS</h2>
        <p class="lead">Customização da sua plataforma baseada na <mark>identidade visual</mark> de cada cliente com <mark>relatórios</mark> de acordo com cada necessidade.</p>
    </div>

因为我的ajax页面,需要在一些setTimeout中调用wow

我想你是在页面/js文件加载完成之前打电话给WOW的。我该如何解决这个问题?如果你检查网站并转到404错误,你会看到它在那里工作。。。我唯一能想到的是其他图像有更多的类,但在我看来这不是问题。