我正在尝试将animate.css添加到我的网站中。为此,我尝试了一个基本的例子。
<html>
<link rel="stylesheet" type="text/css" href="animate.css">
<h1 class="animated infinite bounce">Animate</h1>
</html>
但它不起作用。路径绝对正确。我在XAMPP工作。
答案 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>