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

更新于: 2020 年 6 月 25 日

548 次浏览

助力您的 事业

完成课程获得认证

开始
广告