Mars光
2016-04-21 09:14
@-webkit-keyframes changecolor{
0%{
background: red;
}
20%{
background:blue;
}
40%{
background:orange;
}
60%{
background:green;
}
80%{
background:yellow;
}
100%{
background: red;
}
}
@-moz-keyframes changecolor{
0%{
background: red;
}
20%{
background:blue;
}
40%{
background:orange;
}
60%{
background:green;
}
80%{
background:yellow;
}
100%{
background: red;
}
}
@keyframes changecolor{
0%{
background: red;
}
20%{
background:blue;
}
40%{
background:orange;
}
60%{
background:green;
}
80%{
background:yellow;
}
100%{
background: red;
}
}
div {
width: 300px;
height: 200px;
background: red;
color:#fff;
margin: 20px auto;
}
div:hover {
-webkit-animation: changecolor 5s ease-out .2s;
-moz-animation: changecolor 5s ease-out .2s;
animation: changecolor 5s ease-out .2s;
}
错的不是你,是这个世界....第一个字符是@就不能正确提交,可以在前面写点其他的东西,此贴终结!
错的不是你,是这个世界,,,代码没问题的!
对啊 ,我提交也一直叫我再试试,整个第九章的都是这样
好吧,不知道错哪里了,我的提交也是错的。一直说再试试,心累。。
没错呀,我把你的代码试了都能用的。
css没错
十天精通CSS3
242696 学习 · 2623 问题
相似问题