使用 CSS 对 background-position 属性执行动画
使用 @keyframes 对背景位置进行动画处理。要使用 CSS 在 background-position 属性上实现动画,你可以尝试运行以下代码 :
示例
<!DOCTYPE html> <html> <head> <style> div { width: 500px; height: 400px; background: yellow; background-image: url('https://tutorialspoint.com/latest/microservice_architecture.png'); animation: myanim 3s infinite; background-position: bottom left; } @keyframes myanim { 20% { background-color: maroon; background-position: bottom right; } } </style> </head> <body> <div></div> </body> </html>
广告