網(wǎng)頁(yè)標(biāo)題圖片
<link rel="icon" />
h5+c3輪播
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
section {
width: 430px;
height: 440px;
overflow: hidden;
}
a {
display: block;
width: 430px;
height: 440px;
}
section a img:nth-of-type(1) {
animation: myfirst 15s infinite;
}
@keyframes myfirst {
0% {
transform: translatey(0px);
}
25% {
transform: translatey(-445px);
}
50% {
transform: translatey(-890px);
}
75% {
transform: translatey(-445px);
}
100% {
transform: translatey(0px);
}
}
</style>
</head>
<body>
<section>
<a href="#"><img src="img/8.jpg"></a>
<a href="#"><img src="img/9.jpg"></a>
<a href="#"><img src="img/10.jpg"></a>
</section>
</body>