16.过渡与动画

笔记来源:尚硅谷Web前端HTML5&CSS3初学者零基础入门全套完整版

过渡与动画

1、过渡

过渡(transition)

  • 通过过渡可以指定一个属性发生变化时的切换方式
  • 通过过渡可以创建一些非常好的效果,提升用户的体验

属性值

transition-property:指定要执行过渡的属性

  • 多个属性间使用,隔开;
  • 如果所有属性都需要过渡,则使用all关键字;
  • 大部分属性都支持过渡效果;
  • 注意过渡时必须是从一个有效数值向另外一个有效数值进行过渡;

transition-duration:指定过渡效果的持续时间

  • 时间单位:s和ms(1s=1000ms)

transition-delay:过渡效果的延迟,等待一段时间后在执行过渡

transition-timing-function:过渡的时序函数

  • linear匀速运动
  • ease 默认值,慢速开始,先加速后减速
  • ease-in 加速运动
  • ease-out 减速运动
  • ease-in-out 先加速后减速
  • cubic-bezier()来指定时序函数 https://cubic-bezier.com
  • steps()分步执行过渡效果,可以设置第二个值:
    • end,在时间结束时执行过渡(默认值)
    • start,在时间开始时执行过渡

transition:可以同时设置过渡相关的所有属性

  • 只有一个要求,如果要写延迟,则两个时间中第一个是持续时间,第二个是延迟时间

示例

/* transition: margin-left 2s 1s; */
transition-property: margin-left;
transition-duration: 2s;
transition-delay: 1s;

   
   

transition

几种过渡效果对比

linear匀速运动

transition-timing-function: linear;

   
   
   
   
  • 1

linear

ease 默认值,慢速开始,先加速后减速

transition-timing-function: ease;

   
   
   
   
  • 1

ease

ease-in 加速运动

transition-timing-function: ease-in;

   
   
   
   
  • 1

ease-in

ease-out 减速运动

transition-timing-function: ease-out;

   
   
   
   
  • 1

ease-out

ease-in-out 先加速后减速

transition-timing-function: ease-in-out;

   
   
   
   
  • 1

ease-in-out

cubic-bezier()来指定时序函数

transition-timing-function: cubic-bezier(.17, 1.79, .68, -0.69);

   
   
   
   
  • 1

cubic-bezier

steps()分步执行过渡效果

/* transition-timing-function: steps(2, end); */
transition-timing-function: steps(2);

   
   

steps-end

transition-timing-function: steps(2, start);

   
   
   
   
  • 1

steps-start

2、动画

动画和过渡类似,都是可以实现一些动态的效果,不同的是

  • 过渡需要在某个属性发生变化时才会触发
  • 动画可以自动触发动态效果

设置动画效果,必须先要设置一个关键帧,关键帧设置了动画执行每一个步骤

@keyframes test {
    from {
        margin-left: 0;
    }
<span class="token selector">to</span> <span class="token punctuation">{<!-- --></span>
    <span class="token property">margin-left</span><span class="token punctuation">:</span> 900px<span class="token punctuation">;</span>
<span class="token punctuation">}</span>

}

animation-name 指定动画的关键帧名称

animation-duration:指定动画效果的持续时间

animation-delay:动画效果的延迟,等待一段时间后在执行动画

animation-timing-function:动画的时序函数

animation-iteration-count 动画执行的次数

  • infinite 无限执行

animation-direction 指定动画运行的方向

  • normalfromto运行,每次都是这样,默认值
  • reversetofrom运行,每次都是这样
  • alternatefromto运行,重复执行动画时反向执行
  • alternate-reversetofrom运行,重复执行动画时反向执行

animation-play-state 设置动画的执行状态

  • running 动画执行,默认值
  • paused 动画暂停

animation-fill-mode 动画的填充模式

  • none 动画执行完毕,元素回到原来位置,默认值
  • forwards 动画执行完毕,元素会停止在动画结束的位置
  • backwards 动画延时等待时,元素就会处于开始位置
  • both 结合了forwardsbackwards

示例

/* animation-name: test;
animation-duration: 2s;
animation-delay: 2s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-fill-mode: both; */

animation: test 2s 2s linear infinite alternate both;

animation

3、实战

米兔

.box {
    height: 271px;
    width: 132px;
    background-image: url("/assets/米兔/bigtap-mitu-queue-big.png");
    margin: 100px auto;
    transition: background-position 1s steps(4);
}

.box:hover {
background-position: -528px 0;
}

米兔

奔跑的少年

.box {
    height: 256px;
    width: calc(1536px/6);
    background-image: url("/assets/奔跑的少年/bg2.png");
    margin: 100px auto;

}

/* 关键帧 */
@keyframes run {
from {
background-position: 0 0;
}

}

奔跑的少年

弹力球

.outer {
    width: 100%;
    height: 700px;
    border-bottom: 10px solid #000;
    /* 外边距重叠,开启BFC */
    overflow: hidden;
}

.ball {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: gray;
animation: bounce 6s ease-in;
}

@keyframes bounce {
from {
margin-top: 0;

}

弹力球

酷炫球

div {
    float: left;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: bounce .5s infinite ease-in alternate;
}

.ball1 {
background-color: red;
animation-delay: .1s;
}

.ball2 {
background-color: yellow;
animation-delay: .2s;
}

.ball3 {
background-color: green;
animation-delay: .3s;
}

.ball4 {
background-color: blue;
animation-delay: .4s;
}

.ball5 {
background-color: pink;
animation-delay: .5s;
}

.ball6 {
background-color: orange;
animation-delay: .6s;
}

.ball7 {
background-color: fuchsia;
animation-delay: .7s;
}

.ball8 {
background-color: gray;
animation-delay: .8s;
}

.ball9 {
background-color: darkcyan;
animation-delay: .9s;
}

.ball10 {
background-color: indigo;
animation-delay: 1s;
}

.ball11 {
background-color: black;
animation-delay: 1.1s;
}

.ball12 {
background-color: darkcyan;
animation-delay: 1.2s;
}

.ball13 {
background-color: darkkhaki;
animation-delay: 1.3s;
}

.ball14 {
background-color: brown;
animation-delay: 1.4s;
}

.ball15 {

@keyframes bounce {
from {
margin-top: 0;
}

}

酷炫球

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值