亚灿网志

「HTML&CSS」第二部分

一、rotate

2d旋转指的是让元素在2维平面内顺时针旋转或者逆时针旋转

使用步骤:

  1. 给元素添加转换属性 transform
  2. 属性值为 rotate(角度)transform:rotate(30deg) 顺时针方向旋转30度
div{
      transform: rotate(0deg);
}

二、设置元素旋转中心点(transform-origin)

transform-origin 基础语法:

transform-origin: x y;

重要知识点:

三、2D 转换之 scale

scale 的作用

语法

transform: scale(x, y)

知识要点

代码演示

   div:hover {
       /* 注意,数字是倍数的含义,所以不需要加单位 */
       /* transform: scale(2, 2) */
   
       /* 实现等比缩放,同时修改宽与高 */
       /* transform: scale(2) */
   
       /* 小于 1 就等于缩放*/
       transform: scale(0.5, 0.5)
   }

四、2D 转换综合写法以及顺序问题

知识要点

代码演示

div:hover {
  transform: translate(200px, 0) rotate(360deg) scale(1.2)
}

五、动画(animation)

什么是动画

动画的基本使用

语法格式(定义动画)

@keyframes 动画名称 {
    0% {
        width: 100px;
    }
    100% {
        width: 200px
    }
}

语法格式(使用动画)

div {
    /* 调用动画 */
    animation-name: 动画名称;
     /* 持续时间 */
     animation-duration: 持续时间;
}

动画序列

代码演示

<style>
    div {
      width: 100px;
      height: 100px;
      background-color: aquamarine;
      animation-name: move;
      animation-duration: 0.5s;
    }

    @keyframes move{
      0% {
        transform: translate(0px)
      }
      100% {
        transform: translate(500px, 0)
      }
    }
  </style>

六、动画常见属性

代码演示

div {
  width: 100px;
  height: 100px;
  background-color: aquamarine;
  /* 动画名称 */
  animation-name: move;
  /* 动画花费时长 */
  animation-duration: 2s;
  /* 动画速度曲线 */
  animation-timing-function: ease-in-out;
  /* 动画等待多长时间执行 */
  animation-delay: 2s;
  /* 规定动画播放次数 infinite: 无限循环 */
  animation-iteration-count: infinite;
  /* 是否逆行播放 */
  animation-direction: alternate;
  /* 动画结束之后的状态 */
  animation-fill-mode: forwards;
}

div:hover {
  /* 规定动画是否暂停或者播放 */
  animation-play-state: paused;
}

七、动画简写方式

动画简写方式

/* animation: 动画名称 持续时间 运动曲线 何时开始 播放次数 是否反方向 起始与结束状态 */
animation: name duration timing-function delay iteration-count direction fill-mode

知识要点

代码演示

animation: move 2s linear 1s infinite alternate forwards;

八、速度曲线细节

速度曲线细节

animation-timing-function: 规定动画的速度曲线,默认是ease

代码演示

div {
  width: 0px;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  background-color: aquamarine;
  animation: move 4s steps(24) forwards;
}

@keyframes move {
  0% {
    width: 0px;
  }

  100% {
    width: 480px;
  }
}

九、案例:奔跑的熊大

<!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>
        body {
            background-color: #ccc;
        }      
        div {
            position: absolute;
            width: 200px;
            height: 100px;
            background: url(media/bear.png) no-repeat;
            /* 我们元素可以添加多个动画, 用逗号分隔 */
            animation: bear .4s steps(8) infinite, move 3s forwards;
        }
        
        @keyframes bear {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: -1600px 0;
            }
        }
        
        @keyframes move {
            0% {
                left: 0;
            }
            100% {
                left: 50%;
                /* margin-left: -100px; */
                transform: translateX(-50%);
            }
        }
    </style>
</head>

<body>
    <div></div>
</body>

</html>

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »