@Keyframes 插入图片, 谢谢
用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>