<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 509px;
height: 270px;
margin: 100px auto;
background: url(DemoMaterial/animation/shark1.png);
animation: move 1s steps(8) infinite;
}
@keyframes move {
0% {
}
100% {
background-position: left -2160px;
}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
- demo 效果:
- 素材