박스안에 이미지가 계속 지나가는 효과
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>슬라이드 효과</title>
<style>
.moving {
width: 100%;
height: 500px;
background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRHI88tH4dhwobftkxshHHVGiWv_C7dyiFGWg&usqp=CAU") 0 center / 770px;
animation: movebg 2s linear infinite;
}
@keyframes movebg {
0% {background-position: 0 center;}
100% {background-position: -770px center;}
}
</style>
</head>
<body>
<div class="moving">
</div>
</body>
</html>