level 1
<style type="text/css">
#banner {
width: 1400px;
height: 440px;
margin: 0 auto;
overflow: hidden;
background-size:cover ;
background-position: center;
background-repeat:no-repeat ;
background:url("img/lunbo/1.jpg");
/* 图1*/
animation: banner 15s infinite;
/*定义一个动画效果:动画名称 10s 无限循环*/
}
@keyframes banner {
20%{
background:url("img/lunbo/1.jpg");
/*图1*/
}
25% {
background: url("img/lunbo/2.jpg");
/*图2*/
}
45%{
background: url("img/lunbo/2.jpg");
/*图2*/
}
50% {
background: url("img/lunbo/3.jpg");
/*图3*/
}
70%{
background: url("img/lunbo/3.jpg");
/*图3*/
}
75% {
background: url("img/lunbo/4.jpg");
}
95%{
background: url("img/lunbo/4.jpg");
}
100%{
background: url("img/lunbo/1.jpg");
}
}
</style>
2018年10月10日 10点10分



