【问题标题】:Animate.css Not workingAnimate.css 不工作
【发布时间】:2014-01-22 02:31:17
【问题描述】:

我正在使用animate.css,但它似乎在 Firefox 中不起作用。我使用的代码是:

       <html>
        <head>
        <link rel="stylesheet" href="animate.css"/>
        </head>
        <body>
        <div class="rotateIn"> content</div>
        </body>
        </html>

我希望这个 div 在我们加载页面时显示旋转效果,但它似乎不起作用。

【问题讨论】:

    标签: html css animation css-animations


    【解决方案1】:

    如果你想显示动画,你必须使用 animated 类试试这个

        <html>
        <head>
        <link rel="stylesheet" href="animate.css"/>
        </head>
        <body>
        <div class="animated rotateIn"> content</div>
        </body>
        </html>
    

    【讨论】:

      【解决方案2】:

      长话短说:http://jsfiddle.net/3ZLLm/

      必须使用提供的animated 类。

      所以,进一步补充,应该是:

      <div class="animated rotateIn"> content</div>
      

      【讨论】:

        猜你喜欢
        • 2017-12-01
        • 1970-01-01
        • 1970-01-01
        • 2015-04-19
        • 1970-01-01
        • 2022-01-01
        • 2021-04-21
        • 2015-12-07
        相关资源
        最近更新 更多