只有哇bounceOut在我的html代码中工作过,尝试了其他几个类,但没有一个在工作

时间:2019-05-20 15:43:58

标签: animate.css wow.js

我正在尝试使用animate.css和wow.js创建一个网页,但我无法使其正常运行,只有其中一个正在运行(哇反弹)..我下载了animate.css和wow.js并将其链接到我的本地页面,但没有用,所以我尝试从在线链接它的结果仍然相同

<head>
    <title>Ario's Apparell </title>

   </head>



   <body style="background-color: activecaption;">


     <!-- menu 0000-->





     <div class="container-fluid"  style="margin-top: 90px; text-align: center;"   id="index-1"> 

           <div class="row">

               <div class="col">

                   <h1 class="wow bounceOut" style="color: white;margin-top: 40px;">  Ario's Apparel </h1>
                   <p  class=" wow fadeInDown"   style="color: white;"> Home of professional unisex fashion designers.</p>

               </div>


           </div>



       </div>












    <script src="js/wow.min.js"></script>
    <script>
           var wow = new WOW(
                   {
                       boxClass: 'wow',
               animateClass:'animated',
               offset: 0,
               mobile: true,
               live: true,
               callback:  function(box){
                   scrollContainer:null
               }
           };


        );
WOW.init();

        }
    </script>



</body>

(wow fadeInDown)不起作用,如果我更改(wow bounceOut),它将不起作用,即动画将不会显示。

0 个答案:

没有答案