我是HTML和CSS的新手,想给我的试用版网站做动画,但是当我把Animation.css添加到我的文件中时,它把它弄得一团糟,不能做动画,把我的图片和背景弄得一团糟。
下面是我的代码:
h2 {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
color: aqua;
position: relative;
left: 282px;
text-transform: uppercase;
font-size: 45px;
animation-name: animation1;
animation-duration: 2;
}
h1 {
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
color: aqua;
position: relative;
left: 250px;
text-transform: uppercase;
font-size: 55px;
}
img {
position: relative;
bottom: 0px;
left: 425px;
}
body {
background-image: url(cool%20gradient.png);
background-position: 50% 50%;
background-repeat: no-repeat;
}
a {
color: hotpink;
text-transform: uppercase;
font-size: 30px;
position: relative;
left: 165px;
bottom: -50px;
}
<h2 class="animated bounceInRight">Want to see a Pug</h2>
<h1 class="animated bounceInLeft">Licking a Screen</h1>
<img class="animated fadeInDown" src="Down-Arrow1.png" style="width:200px;height:200px;">
<a class="animated fadeInUp" href="http://www.sanger.dk/">Pug Licking Screen</a>
感谢所有的帮助!
3条答案
按热度按时间ccrfmcuu1#
如果你的代码是好的,但不能看到动画效果,这个问题是为您的Windows设置性能选项
你应该从CSS文件(animate.css)中删除此代码,然后使用Ctrl + F5键清除浏览器缓存,并查看刷新的网页
x9ybnkn62#
<style>
标记属于<head>
部分。还要确保animate.min.css
文件存在并且文件的路径正确。kpbpu0083#
animate.css
库尊重您的系统关于动画的设置。其他动画库不尊重您的系统关于动画的设置。在Windows上,请确保您允许如下所示的动画。animate.css
库尊重您的设置。有关系统动画设置的更多信息,请访问MDN::https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion