使用 CSS 对背景位置属性进行动画处理


使用 @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>

更新于: 25-6月-2020

332 查看

开启你的 职业生涯

完成课程获得认证

开始
广告