【CSS】CSS之&旋转&动画

iconfont图标的使用

进入https://www.iconfont.cn

  1. 添加完成icon font图标之后点击添加至项目,在项目中就可以看到添加的图标

  2. 常用的有三种方法,第一种下载至本地 第二种生成在线代码复制到相应的文件内 第三种使用为元素添加

  3. 使用时要用标签包裹,且有两个类名 第一个为iconfont 第二个为需要引用的字体图标

  4. 下载至本地需要引入两个字体图标到根目录的fonts文件夹内 分别为下图四个文件 且引入iconfont的css文件

本地下载如果需要添加新的图标,则需要重新替换iconfont.css文件

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Ljaz33uq-1653304327257)(C:\Users\Admin\AppData\Local\Temp\1653004980696.png)]

<!-- 本地引入 -->
<link rel="stylesheet" href="../fonts/iconfont.css">
<style>
    .icon-location {
      font-size: 20px;
      color: pink;
    }
  </style>
</head>

<body>
  <span class="iconfont icon-location"></span>
</body>
  1. 生成在线代码 直接复制到代码中,引入css路径填写复制的路径 并在前缀添加https: 或者http:
<!-- 在线引入 -->
 <link rel="stylesheet" href="https://at.alicdn.com/t/font_3401741_m3gtoblu85.css">
 <style>
   .icon-location {
     font-size: 20px;
     color: pink;
   }
 </style>
</head>

<body>
 <span class="iconfont icon-location"></span>
</body>

  1. 使用伪元素添加 同样引用在线代码 引入步骤同上一步一样 在iconfont网站点击一下在现代码即可进入css源码文件 并找到相关类名中的代码写到content中
<link rel="stylesheet" href="https://at.alicdn.com/t/font_3401741_8cdevwobz7.css">
 <style>
   .box {
     width: 100px;
     height: 40px;
     border: 1px solid pink;
   }

   .box::after {
     content: '\e6b7';
     line-height: 40px;
     float: right;
   }
 </style>
</head>

<body>
 <div class="box iconfont"></div>
</body>

位移

  <style>
    .box {
      height: 100px;
      width: 100px;
      background-color: pink;
      transition: .5s;

    }

    .box:hover {
      transform: translateY(-10px);
    }
  </style>
</head>

<body>
  <div class="box"></div>
</body>
  • 水平方向为 transform: translateX(需要位移的距离);
  • 垂直方向为 transform: translateY(需要位移的距离);
  • 向前或向后移动为 transform: translateZ(需要位移的距离);
  • 连写时为 transform: translate(水平方向位移的距离(X轴),垂直方向位移的距离(Y轴)前后方向位移的距离(Z轴));
  • 透视: perspective: 200px;由远到近的效果,该属性应给父元素设置(应注意如果配合3D旋转使用时子盒子要和父盒子一样大或者在父盒子中间,否则会出现偏移)

旋转

<style>
    .box {
      width: 600px;
      height: 500px;
      background-color: pink;
      margin: 100px auto;
      border-radius: 150px 150px 0px 0px;
      transition: all .3s;

    }

    .box:hover {
      transform: rotate(180deg);
    }
  </style>
</head>

<body>
  <div class="box">
  </div>
</body>
  • 顺时针(正值)/逆时针旋转(负值)transform: rotate(需要旋转的度数单位为deg);
  • 沿着X轴旋转(类似于围绕单杠旋转往下为负值,往上为正值)transform: rotateX(需要旋转的度数单位为deg);
  • 沿着Y轴旋转(类似于围绕钢管旋转往右为正值,往左为负值)transform: rotateY(需要旋转的度数单位为deg);
  • 沿着Z轴旋转(类似于一个平躺的圆柱体将它扶起来,从左往右为正值(90度时立起来时左边在上),从右往左为负值(90度时立起来时右边在上))transform: rotateZ(需要旋转的度数单位为deg);
  • 3D立体显示 transform-style: preserve-3d;需要立体显示或者围绕着XYZ轴旋转时需要给父元素设置该属性,否者它们将在同一平面
  • 如果旋转需要和平移一同实现时应将平移写到旋转前边
  • 旋转单位也可以为turn 1turn为一圈

转换原点

语法:transform-origin: 原点水平位置 原点垂直位置

取值

  • 方位名词(left、top、right、bottom、center)
  • 像素单位数值
  • 百分比(参照盒子自身尺寸计算)

缩放

  <style>
    * {
      margin: 0;
      padding: 0;
    }



    .box {
      margin: 0 auto;
      width: 200px;
      height: 200px;
      position: relative;
    }

    .box img:first-child {
      width: 50px;
      height: 50px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(5);
      opacity: 0;
      transition: .5s;
    }

    .box:hover img:first-child {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;

    }

    .box img:nth-child(2) {
      width: 100%;
      height: 100%;
    }
  </style>
<body>
 <div class="box">
    <img src="../images/play.png" alt="">
    <img src="../images/11.jpg" alt="">
  </div>
</body>

缩放scale(需要缩放的大小)(不能为负值)

位移&旋转&缩放注意点

<!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>
    span {
      /* 平面转换属性 设置给行内元素没有效果 必须转换为行内块或块元素 */
      display: inline-block;
      height: 200px;
      width: 200px;
      background-color: pink;
      transition: all 1s;
    }

    span:hover {
      transform: translate(100px);
    }
  </style>
</head>

<body>
  <span>我是行内标签</span>
</body>

</html>

**平面转换属性 设置给行内元素没有效果 必须转换为行内块或块元素 **

渐变色

 .three {
      height: 200px;
      width: 200px;
      background-image: linear-gradient(pink, hotpink);
    }
  • 渐变色为 background-image: linear-gradient(第一种颜色, 第二种颜色);
  • 如果在颜色前加上to方位(例如:to top)就是从下到上来渐变(方位为top、bottom、left、right)

动画

关键帧

 <style>
    .box {
      height: 200px;
      width: 200px;
      border-radius: 50%;
      text-align: center;
      line-height: 200px;
      background-color: pink;
      /* animation: active 1s linear forwards alternate; */
      animation: active 1s;
    }
	/*单帧动画*/
    @keyframes active {
      from {
        transform: translateX(0) rotate(0deg);
      }

      to {
        transform: translateX(1000px) rotate(360deg);
      }
    }
    .box {
      width: 200px;
      height: 200px;
      background-color: pink;
      border-radius: 50%;
      text-align: center;
      line-height: 200px;
      /* 
      linear 匀速行驶
      infinite 无限循环
      alternate 左右来回执行动画
      forwords 动画结束 停留在最后一帧状态 需要在不循环状态使用
       */
      animation: active 4s linear forwards alternate;
    }
    /* 多帧动画 */
    @keyframes active {
      0% {
        transform: translate(0, 0) rotate(0deg);
      }

      25% {
        transform: translate(500px, 0) rotate(90deg);

      }

      50% {
        transform: translate(500px, 300px) rotate(180deg);

      }

      75% {
        transform: translate(0, 300px) rotate(270deg);

      }

      100% {
        transform: translate(0, 0) rotate(360deg);
      }
    }
  </style>

调用动画属性 animation: active 4s linear forwards alternate;

linear 匀速行驶
infinite 无限循环
alternate 左右来回执行动画
forwords 动画结束 停留在最后一帧状态 需要在不循环状态使用

鼠标经过暂停

 .box:hover {
      animation-play-state: paused;
    }

逐帧动画

steps(数字)

 <style>
    .box {
      width: 140px;
      height: 140px;
      background: url(../images/bg.png) no-repeat;
      animation: move 3s steps(12) infinite;
    }

    @keyframes move {
      to {
        background-position: -1680px 0;
      }
    }
  </style>
</head>

<body>
  <div class="box"></div> 
</body>
  • 作用:使某些动画变得清晰可见的动画(例如一个小人奔跑)

多组动画

  /* 多组动画 中间应用,逗号隔开 */
      animation: move 3s steps(12) infinite, run 5s forwards linear;

ion: move 3s steps(12) infinite;
}

@keyframes move {
  to {
    background-position: -1680px 0;
  }
}
~~~
  • 作用:使某些动画变得清晰可见的动画(例如一个小人奔跑)

多组动画

  /* 多组动画 中间应用,逗号隔开 */
      animation: move 3s steps(12) infinite, run 5s forwards linear;
  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

A Lucky Boy

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值