CSS的动画效果

动画效果

语法: 创建动画:@keyframes 调用动画:animation

animation参数值

|---------------------------|--------------------------------------------|
| 参数值 | 效果 |
| animation-name | 规定 @keyframes动画的名称。 |
| animation-duration | 规定动画完成一个周期所花费的秒或毫秒。默认是 0 |
| animation-timing-function | 规定动画的速度曲线。默认是 "ease" |
| animation-delay | 规定动画何时开始。默认是 0 |
| animation-iteration-count | 规定动画被播放的次数(number类型)。默认是 1,(infinite: 无限次) |
| animation-direction | 规定动画是否在下一周期逆向地播放。默认是 "normal" ,'alternate' |
| animation-play-state | 规定动画是否正在运行或暂停。默认是 "running",'paused' |
| animation-fill-mode | 规定对象动画时间之外的状态.forwards,backwards默认值 |

1、通过 @keyframes(关键帧动画) 规则,您能够创建动画。

2、创建动画的原理是,将一套 CSS 样式逐渐变化为另一套样式。在动画过程中,能够多次改变这套 CSS 样式。

3、以百分比来规定改变发生的时间,或者通过关键词 "from" 和 "to",等价于 0% 和 100%。 0% 是动画的开始时间,100% 动画的结束时间。

4、为了获得最佳的浏览器支持,您应该始终定义 0% 和 100% 选择器。

5、在CSS样式中,用animation属性来应用 @keyframes所定义的动画

案例

案例一:元素平移加颜色渐变
css 复制代码
<style>
  .box{
    width: 100px;
    height: 100px;
    background-color: aquamarine;
    animation: dong 2s linear;
  }
  @keyframes dong{
    0%{
      background-color: aquamarine;
      margin-left: 0;
    }
    100%{
      background-color: blueviolet;
      margin-left: 300px;
    }
  }
</style>
<div class='box'>hello world</div>
案例二:将元素移动到某个位置,并且停在当前位置
css 复制代码
<style>
  .box{
    width: 100px;
    height: 100px;
    background-color: aquamarine;
    animation: dong 2s linear;
    /* 动画执行完毕,停止在最后一个动画的效果 */
    animation-fill-mode: forwards;
  }
  @keyframes dong{
    0%{
      background-color: aquamarine;
      margin-left: 0;
    }
    100%{
      background-color: blueviolet;
      margin-left: 300px;
    }
  }
</style>
<div class='box'>hello world</div>
案例三:元素沿着正方形轨迹移动
css 复制代码
<style>
  .box{
    width: 100px;
    height: 100px;
    background-color: aquamarine;
    animation: dong 2s linear;
    /* 动画执行完毕,停止在最后一个动画的效果 */
    animation-fill-mode: forwards;
  }
  @keyframes dong{
    /* 可以省略0%和100%的效果 */
    0%{
      transform: translate(0,0);
    }
    25%{
      transform: translate(300px,0);
    }
    50%{
      transform: translate(300px,300px);
    }
    75%{
      transform: translate(0,300px);
    }
  }
</style>
<div class='box'>hello world</div>
案例四:西游记效果
css 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        {
            padding: 0;
            margin: 0;
        }
        html,body{
            height: 100%;
        }
        .content{
            width: 100%;
            height: 100%;
            background: url('./imgs/10.jpg');
            animation: dong 20s linear infinite;
            position: relative;
        }
        /*背景移动效果 */
        @keyframes dong{
            0%{
                background-position: 0 0;
            }
            100%{
                background-position: 2000px 0;
            }
        }
        .wk{
            width:200px;
            height: 200px;
            position: absolute;
            top: 45%;
            left: 20%;
            background: url('./imgs/1.png') no-repeat 0 0;
            animation: wk 2s steps(8,end) infinite;
        }
        /*悟空移动效果 */
        @keyframes wk{
            0%{
                background-position: 0 0;
            }
            100%{
                background-position: -1600px 0;
            }
        }
        .bj{
            width:200px;
            height: 200px;
            position: absolute;
            top: 45%;
            left: 35%;
            background: url('./imgs/2.png') no-repeat 0 0;
            animation: bj 2s steps(8,end) infinite;
        }
        /*八戒移动效果 */
        @keyframes bj{
            0%{
                background-position: 0 0;
            }
            100%{
                background-position: -1600px 0;
            }
        }
    </style>
</head>
<body>
    <div class="content">
        <div class="wk"></div>
        <div class="bj"></div>
    </div>
</body>
</html>

steps 有两个参数 第一个表示分几步执行完 第二个有两个值 start 第一帧是第一步动画结束 end 第一帧是第一步动画开始

案例五:风车效果
css 复制代码
<style>
  div{
    width: 1000px;
    height: 500px;
    background-image: url(caodi.png);
    background-size: 1000px 500px
      margin: 100px auto;
    position: relative;
  }
  img:nth-child(1){
    width: 350px;
    height: 350px;
    position: absolute;
    left: 115px;
    top: 60px;
  }
  /*设置第二个风车*/
  img:nth-child(2){
    width: 150px;
    height: 150px;
    position: absolute;
    top: 285px;
    left: 440px;
  }
  /*设置第三个风车*/
  img:nth-child(3){
    width: 250px;
    height: 250px;
    position: absolute;
    top: 190px;
    left: 578px;
  }
  /*key:关键,键;frame:框架;关键帧动画*/
  @keyframes dongHua {
    0%{
      transform: rotate(0deg);
    }100%{
      transform: rotate(360deg);
    }
  }
  img{
    /*动画 合写*/
    animation: dongHua 1s infinite linear;

  }
</style>
<div>
  <img src="fengche.png" alt="这是一张图片:风车">
  <img src="fengche.png" alt="这是第二个风车">
  <img src="fengche.png" alt="这是第三个风车">
</div>
相关推荐
星星在线2 小时前
MusicFree:一个「All in One」的个人音乐服务器,让听歌回归简单
前端·后端
IT_陈寒3 小时前
Redis的SETNX并发问题让我加了三天班
前端·人工智能·后端
demo007x3 小时前
Docling 文档转换以及技术架构分析
前端·后端·程序员
京东云开发者4 小时前
京东市民服务又“上新”!这次是黑龙江“龙易办”
前端
袋鱼不重5 小时前
我的神奇同事,AI 用多了居然写了个 Open In Codex
前端·后端·ai编程
Fireworks5 小时前
深入vue3源码解读 -- 1、响应式的基础概念
前端
程序员黑豆5 小时前
JDK 下载安装与配置详细教程
java·前端·ai编程
hunterandroid5 小时前
文件存储:内部存储与外部存储
前端
NorBugs6 小时前
飞机大战 Low 版 (Made in AI)
前端
angerdream6 小时前
Android手把手编写儿童手机远程监控App之agentweb如何实现全屏
前端