css动画 --- transition

2021-03-12 01:28

阅读:606

前言

页面效果是很重要的一环,好的页面效果,可以让用户感觉很舒服,进而能吸引更多的用户。
既然是页面效果,那么动画肯定不可或缺,那么这篇先说下 transition 这个 css3 属性。

初探 transition

transitions 提供了一种在更改 CSS 属性时控制动画速度的方法。其可以让属性变化成为一个持续一段时间的过程,而不是立即生效 的。(摘自MDN)

用法

  • 其写法(为了兼容,要加厂商前缀,这里不写咯):

    transition: 
  • 也可以用逗号隔开,多写几个作用于不用的 property(属性)

    transition: , 

各项作用

@ 默认值 作用
property none / all / property all 作用于需要过渡的属性
duration time 0 过渡所需时间
timing-function linear / ease / ease-in / ease-out / ease-in-out / cubic-bezier(n,n,n,n) ease 规定过渡效果的速度曲线
delay time (同duration) 0 延迟多久才开始过渡
  1. property:可过渡的 CSS 属性,有些属性则不行。
  2. time:以秒(如1s)或毫秒(如1000)计。
  3. cubic-bezier(x1,y1,x2,y2):三阶贝塞尔曲线。linearease 等等都是由它计算出来的。x轴 的取值范围:[0,1] 区间内, y轴 可以任意值。可在线自定义 。

动手使用下

基本操作

// css
#box {
  width: 100px;
  height: 100px;
  background-color: aqua;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}

#box:hover {
  width: 500px;
  margin-top: 100px;
}

// html

技术图片

  • #boxstyle 里有transition,要触发它,则需要改变上面所说的 property 。
  • 当鼠标移到 div 时,widthmarin-top 发生了变化,触发了 transition
  • all : 所有可过渡的属性都可以的意思。
  • 1s : 在第二项,即 duration 。过渡所需时间。

简单的类似图片无缝滑动

// css
* {
  margin: 0;
  padding: 0;
}

#box {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  overflow: hidden;
  
}

#img_container {
  position: relative;
  width: 400px;
  transition: all .7s linear;
  -webkit-transition: all .7s linear;
  -moz-transition: all .7s linear;
  -ms-transition: all .7s linear;
  -o-transition: all .7s linear;
}

#img_container span {
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  line-height: 100px;
  background-color: yellow;
}

#img_container span:nth-of-type(even) {
  background-color: red;
}

ul {
  text-align: center;
}

li {
  padding: 10px;
  cursor: pointer;
  list-style: none;
  display: inline-block;
}

// html
1234
  • 图一
  • 图二
  • 图三
  • 图四
// js ~function () { let lis = document.getElementsByTagName(‘li‘); let imgBox = document.getElementById(‘img_container‘); let width = +document.querySelector(‘span‘).clientWidth; for (let j = 0;j

技术图片

  • 这个 demo 是用 js 改变了 property ,从而触发 transition

滚动到某个位置,动画才出现

// css
* {
  margin: 0;
  padding: 0;
}

body {
  height: 1500px;
}


#box {
  height: 1200px;
  text-align: center;
}

#animation {
  width: 100px;
  height: 100px;
  background-color: red;
  transition: transform 1s cubic-bezier(.1,1.92,.71,.53);
  -webkit-transition: transform 1s cubic-bezier(.1,1.92,.71,.53);
  -moz-transition: transform 1s cubic-bezier(.1,1.92,.71,.53);
  -ms-transition: transform 1s cubic-bezier(.1,1.92,.71,.53);
  -o-transition: transform 1s cubic-bezier(.1,1.92,.71,.53);
}

// html
请往下滚动到有动画的地方,或者点击 这里
// js let animation = function () { let animationBox = document.getElementById(‘animation‘); function show () { animationBox.style.transform = ‘translateX(600px) scale(3,3) rotate(360deg)‘; } function init () { animationBox.style.transform = ‘translateX(0) scale(1,1) rotate(-360deg)‘; } return { show, init }; }() window.onscroll = function () { let scrollTop = +window.scrollY; if (scrollTop > 650) { animation.show(); } else { animation.init(); } }

技术图片

  • 因为主要演示动画,所以没写滚动的节流或防抖了 。
  • 当滚动或点击到动画的位置,动画才开始。
  • css 代码可以看到,transition 要通过 transform 的变化来触发。同时我也用到了 cubic-bezier

最后

这里不深入讲解 cubic-bezier ,因为我看原理也是头晕。。。。
transition 还可以实现很多功能,淡出淡入手风琴效果 等等。等着你们去发现。
其实动画不是特别难的,只要你有颗 骚动(好奇)的心。


评论


亲,登录后才可以留言!