动画CSS不起作用

时间:2015-04-14 19:16:52

标签: css animated animate.css

我正在尝试将animate.css添加到我的网站中。为此,我尝试了一个基本的例子。

<html>
  <link rel="stylesheet" type="text/css" href="animate.css">
  <h1 class="animated infinite bounce">Animate</h1>
</html>

但它不起作用。路径绝对正确。我在XAMPP工作。

1 个答案:

答案 0 :(得分:5)

link标记必须位于head元素内。

<html>
  <head>
    <link rel="stylesheet" type="text/css" href="animate.css">
  </head>
  <body>
    <h1 class="animated infinite bounce">Animate</h1>
  </body>
</html>