SuperManSuperWorld
2016-01-22 22:07
用keyframes做一个图片切换的功能, 为什么不显示 谢谢
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
@keyframes changecolor{
0%{
background-image: url(http://www.w3cplus.com/demo/css3/CSS3Fullbackground/sbg1.jpg);
}
20%{
background-image: url(http://www.w3cplus.com/demo/css3/CSS3Fullbackground/sbg2.jpg);
}
50%{
background-image: url(http://www.w3cplus.com/demo/css3/CSS3Fullbackground/sbg3.jpg);
}
80%{
background-image: url(http://www.w3cplus.com/demo/css3/CSS3Fullbackground/sbg4.jpg);
}
100%{
background-image: url(http://www.w3cplus.com/demo/css3/CSS3Fullbackground/sbg5.jpg);
}
}
.TestKey{
width: 220px;
height: 165px;
margin:20px auto;
}
.TestKey:hover{
animation: changecolor 5s ease-out .2s;
}
</style>
</head>
<body>
<div>TestKeyframes</div>
</body>
</html>
function demo(){
}
class="TestKey"忘了写,还有浏览器兼容前缀没写
你的div少了类名啊。
十天精通CSS3
242554 学习 · 2623 问题
相似问题