ใช้ @keyframes เพื่อเคลื่อนไหว ในการใช้งานแอนิเมชั่นบนพื้นหลังด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้
ตัวอย่าง
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 400px;
height: 300px;
animation: myanim 3s infinite;
}
@keyframes myanim {
30% {
background: green bottom right/50px 50px;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>