Animate.css Not working

26,493

Solution 1

you have to use animated class if you want to show animations try this

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

Solution 2

Long story short: http://jsfiddle.net/3ZLLm/

enter image description here

You MUST use the animated class provided.

So, to add further, it should be:

<div class="animated rotateIn"> content</div>
Share:
26,493
Remya Prakash
Author by

Remya Prakash

Updated on November 15, 2020

Comments

  • Remya Prakash
    Remya Prakash over 3 years

    I am using animate.css but it don't seem to work in firefox. The code I am using is:

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

    I want this div to show rotate in effect when we load the page but it don't seem to work.