<!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 {
display: flex;
flex-flow: nowrap;
width: 500px;
overflow: hidden;
}
.item {
display: flex;
flex-flow: nowrap;
animation: rolling 10s linear infinite;
}
.item img {margin: 0 5px;width: 240px;height: 100px;}
/* 鼠标移上去暂停滚动 */
.box:hover .item {
animation-play-state: paused;
}
@keyframes rolling {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}
</style>
</head>
<body>
<div class="box">
<div class="item">
<img src="./1.png" />
<img src="./2png" />
</div>
<div class="item">
<img src="./1.png" />
<img src="./2png" />
</div>
</div>
</body>
</html>