jquery animate 动画问题
我左右切换那个枚红色的条条从上往下掉怎么办?我需要的是从左到右平移啊找到原因了,是因为在全局CSS文件中写了一个a的默认动画~~~~我TM也是醉了!~~~我说无缘无故怎么...
我左右切换 那个枚红色的 条条 从上往下掉 怎么办? 我需要的是从左到右平移啊
找到原因了, 是因为 在全局CSS文件中 写了一个 a的默认动画~~~~我TM也是醉了!~~~我说无缘无故怎么会从上面掉下来~~~ 展开
找到原因了, 是因为 在全局CSS文件中 写了一个 a的默认动画~~~~我TM也是醉了!~~~我说无缘无故怎么会从上面掉下来~~~ 展开
1个回答
展开全部
用 css3 自己写一个 又 简单 有方便!
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:100px;
height:100px;
background:red;
position:relative;
animation:myfirst 5s;
-moz-animation:myfirst 5s; /* Firefox */
-webkit-animation:myfirst 5s; /* Safari and Chrome */
-o-animation:myfirst 5s; /* Opera */
}
@keyframes myfirst
{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
@-moz-keyframes myfirst /* Firefox */
{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
@-o-keyframes myfirst /* Opera */
{
0% {background:red; left:0px; top:0px;}
25% {background:yellow; left:200px; top:0px;}
50% {background:blue; left:200px; top:200px;}
75% {background:green; left:0px; top:200px;}
100% {background:red; left:0px; top:0px;}
}
</style>
</head>
<body>
<p><b>注释:</b>本例在 Internet Explorer 中无效。</p>
<div></div>
</body>
</html>
追问
找到原因了, 是因为 在全局CSS文件中 写了一个 a的默认动画~~~~我TM也是醉了!~~~我说无缘无故怎么会从上面掉下来~~~
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询