带有CSS的动画背景

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

以上是 带有CSS的动画背景 的全部内容, 来源链接: utcz.com/z/330964.html

回到顶部