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 小时前
Electron-Vite (一)快速构建桌面应用
前端
中微子2 小时前
React 执行阶段与渲染机制详解(基于 React 18+ 官方文档)
前端
唐某人丶2 小时前
教你如何用 JS 实现 Agent 系统(2)—— 开发 ReAct 版本的“深度搜索”
前端·人工智能·aigc
中微子2 小时前
深入剖析 useState产生的 setState的完整执行流程
前端
遂心_2 小时前
JavaScript 函数参数传递机制:一道经典面试题解析
前端·javascript
小徐_23332 小时前
uni-app vue3 也能使用 Echarts?Wot Starter 是这样做的!
前端·uni-app·echarts
RoyLin2 小时前
TypeScript设计模式:适配器模式
前端·后端·node.js
遂心_3 小时前
深入理解 React Hook:useEffect 完全指南
前端·javascript·react.js
Moonbit3 小时前
MoonBit 正式加入 WebAssembly Component Model 官方文档 !
前端·后端·编程语言
龙在天3 小时前
ts中的函数重载
前端