【CSS 28】animations 动画 @keyframes规则 延迟动画 运行次数 反向or交替 速度曲线 填充模式 简写属性

news/2024/12/22 22:00:56/

CSS

      • animations 动画

animations 动画

CSS 可实现 HTML 元素的动画效果,而不使用 JavaScript 或 Flash

下面我们将使用到下面的属性:

  • @keyframes
  • animation-name
  • animation-duration
  • animation-delay
  • animation-iteration-count
  • animation-direction
  • animation-timing-function
  • animation-fill-mode
  • animation

动画使元素逐渐从一种样式变为另一种样式
可以随意更改任意数量的 CSS 属性
如需使用 CSS 动画,您必须首先为动画指定一些关键帧
关键帧包含元素在特定时间所拥有的样式

@keyframes 规则
如果您在 @keyframes 规则中指定了 CSS 样式,动画将在特定时间逐渐从当前样式更改为新样式
要使动画生效,必须将动画绑定到某个元素

<!-- 
下面的例子将 "example" 动画绑定到 <div> 元素
动画将持续 4 秒钟,同时将 <div> 元素的背景颜色从 "red" 逐渐改为 "yellow"注意:animation-duration 属性定义需要多长时间才能完成动画
如果未指定 animation-duration 属性,则动画不会发生,因为默认值是 0s(0秒)通过使用关键字 "from" 和 "to"(代表 0%(开始)和 100%(完成)),我们设置了样式何时改变
也可以使用百分比值,通过使用百分比可以根据需要添加任意多个样式更改
-->
<!DOCTYPE html>
<html>
<head>
<style>
div {width: 100px;height: 100px;background-color: red;animation-name: example;animation-duration: 4s;
}@keyframes example {from {background-color: red;}to {background-color: yellow;}
}
</style>
</head>
<body><p>当动画结束后,会变回最初的样式</p><div></div></body>
</html>

酷一点的

/*动画代码*/
@keyframes example {0% {background-color: red;}25% {background-color: yellow;}50% {background-color: blue;}100% {background-color: green;}
}/*应用动画的元素*/
div {width: 100px;height: 100px;background-color: red;animation-name: example;animation-duration: 4s;
}

更酷一点的

div {width: 100px;height: 100px;background-color: red;position: relative;animation-name: example;animation-duration: 4s;
}@keyframes example {0% {background-color: red; left: 0px; top: 0px;}25% {background-color: yellow; left: 200px; top: 0px;}50% {background-color: blue; left: 200px; top: 200px;}75% {background-color: green; left: 0px; top: 200px;}100% {background-color: red; left: 0px; top: 0px;}
}

延迟动画
animation-delay 属性规定动画开始的延迟时间
下面的例子在开始动画前有 2 秒的延迟

div {width: 100px;height: 100px;position: relative;background-color: red;animation-name: example;animation-duration: 4s;animation-delay: 2s;
}@keyframes example {0%   {background-color:red; left:0px; top:0px;}25%  {background-color:yellow; left:200px; top:0px;}50%  {background-color:blue; left:200px; top:200px;}75%  {background-color:green; left:0px; top:200px;}100% {background-color:red; left:0px; top:0px;}
}

负值也是允许的。如果使用负值,则动画将开始播放,如同已播放 N 秒
在下面的例子中,动画将开始播放,就好像它已经播放了 2 秒钟一样

div {width: 100px;height: 100px;position: relative;background-color: red;animation-name: example;animation-duration: 4s;animation-delay: -2s;
}

设置动画应该运行多少次
animation-iteration-count 属性指定动画应运行的次数
下面的例子在停止前把动画运行 3 次

div {width: 100px;height: 100px;position: relative; /*必须开启相对定位,否则div方块就不会进行移动*/background-color: red;animation-name: example;animation-duration: 4s;animation-delay: 2s;animation-iteration-count: 3;
}@keyframes example {0%   {background-color:red; left:0px; top:0px;}25%  {background-color:yellow; left:200px; top:0px;}50%  {background-color:blue; left:200px; top:200px;}75%  {background-color:green; left:0px; top:200px;}100% {background-color:red; left:0px; top:0px;}
}

下面的例子使用值 “infinite” 使动画永远持续下去

div {width: 100px;height: 100px;position: relative; /*必须开启相对定位,否则div方块就不会进行移动*/background-color: red;animation-name: example;animation-duration: 4s;animation-delay: 2s;animation-iteration-count: infinite;
}

反向或交替运行动画
animation-direction 属性指定是向前播放、向后播放还是交替播放动画
animation-direction 属性可接受以下值:

  • normal
  • reverse
  • alternate
  • alternate-reverse
div {width: 100px;height: 100px;position: relative;background-color: red;animation-name: example;animation-duration: 4s;animation-iteration-count: 2;animation-direction: alternate-reverse;
}

指定动画的速度曲线
animation-timing-function 属性规定动画的速度曲线
animation-timing-function 属性可接受以下值:

  • ease
  • linear
  • ease-in
  • ease-out
  • ease-in-out
  • cubic-bezier(n, n, n, n)
div {width: 100px;height:50px;background-color: red;font-weight: bold;position:relative;animation: mymove 5s infinite;
}#div1 {animation-timing-function: linear;}
#div2 {animation-timing-function: ease;}
#div3 {animation-timing-function: ease-in;}
#div4 {animation-timing-function: ease-out;}
#div5 {animation-timing-function: ease-in-out;}@keyframes mymove {from {left: 0px;}to {left: 300px;}
}

指定动画的填充模式
CSS 动画不会在第一个关键帧播放之前或在最后一个关键帧播放之后影响元素
animation-fill-mode 属性能够覆盖这种行为

在不播放动画时(在开始之前,结束之后,或两者都结束时),animation-fill-mode 属性规定目标元素的样式

animation-fill-mode 属性可接受以下值:

  • none - 默认值,动画在执行之前或之后不会对元素应用任何样式
  • forwards - 元素将保留由最后一个关键帧设置的样式值(依赖 animation-direction 和 animation-iteration-count)
  • backwards - 元素将获取由第一个关键帧设置的样式值(取决于 animation-direction),并在动画延迟期间保留该值
  • both - 动画会同时遵循向前和向后的规则,从而在两个方向上扩展动画属性
<!DOCTYPE html>
<html>
<head>
<style> 
div {width: 100px;height: 100px;background: red;position: relative;animation-name: example;animation-duration: 3s;  animation-delay: 2s;animation-fill-mode: both;
}@keyframes example {from {top: 0px; background-color: yellow;}to {top: 200px; background-color: blue;}
}
</style>
</head>
<body><p>在动画开始之前,让 div 元素获取第一个关键帧设置的样式值,并在动画结束时保留最后一个关键帧的样式值:</p><div></div><p><b>注释:</b>Internet Explorer 9 以及更早的版本不支持 animation-fill-mode 属性。</p></body>
</html>

动画简写属性

div {animation-name: example;animation-duration: 5s;animation-timing-function: linear;animation-delay: 2s;animation-iteration-count: infinite;animation-direction: alternate;
}div {animation: example 5s linear 2s infinite alternate;
}

http://www.ppmy.cn/news/804547.html

相关文章

Vue 适配iOS、Android顶部状态栏(沉浸式,混合APP开发)

1、获取高度、赋值 移动端通过拼接到ua信息里传递给web前端 安卓手机的全面屏有些特殊,高度会莫名多一截儿(为啥特殊我也不知道, 仙女叹气ε=(ο`*)))唉!有知道的友友们 ,欢迎在评论区留言哦~),所以单独做了些处理,具体看代码 //判断屏幕是否为全面屏 export function …

苹果状态栏HTML,webview内嵌的html页面,在ios系统上12以上版本和12以下版本状态栏效果不一样...

详细问题描述 (DCloud产品不会有明显的bug&#xff0c;所以你遇到的问题大都是在特定环境下才能重现的问题&#xff0c;请仔细描述你的环境和重现方式&#xff0c;否则DCloud很难排查解决你的问题) [内容] 重现步骤 在vue页面使用webview组件&#xff0c;内嵌HTML页面&#xff…

Flutter 沉浸式状态栏

Flutter 沉浸式状态栏 flutter项目运行起来&#xff0c;在ios上显示是没有最上边的半透明阴影&#xff0c;在android上状态栏有是有黑色阴影的。 去掉状态栏阴影如下&#xff1a; import dart:io; //提供Platform接口 import package:flutter/services.dart; //提供SystemUi…

如何获取iPhone 各机型以及系统的状态栏高度进行适配

在iPhone x以前苹果手机的各机型状态栏高度均为20&#xff1b;在iPhone x以后苹果新推出刘海屏机型&#xff0c;苹果的各机型状态栏高度均为44。但是今年苹果随着苹果新操作系统iOS 14的推出导致了iPhone x以后的部分苹果刘海屏机型状态栏的高度的改变有的为47&#xff0c;有的…

ios 设置状态栏颜色

UIView *statusBar [[[UIApplication sharedApplication] valueForKey:"statusBarWindow"] valueForKey:"statusBar"]; if ([statusBar respondsToSelector:selector(setBackgroundColor:)]) { statusBar.backgroundColor ColorRed; }

html设置ios状态栏颜色,iOS 修改状态栏颜色

iOS中修改状态颜色在iOS9后官方废弃了下面这种方法 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault]; //‘setStatusBarStyle:‘ is deprecated: first deprecated in iOS 9.0 - Use -[UIViewController preferredStatusBarStyle] [[UIApplica…

关于微信小程序自定义导航栏时,如何获取手机状态栏和导航栏高度

微信小程序导航栏状态栏可修改项 在微信小程序中&#xff0c;能修改状态栏和导航栏的样式&#xff0c;只能修改背景色、文字颜色&#xff08;只支持白色/黑色&#xff09;、和标题文字。 navigationStyle 可以控制是否显示导航栏。如果设置为custom&#xff0c;则没有状态栏&…

苹果手机状态栏高度总结

手机型号状态栏高度导航栏高度iphone 6 plus60px132pxiphone 640px88pxiphone 540px88pxiphone 440px88pxiphone x132px132px iPhone 6s/7/8 Plus和iPhone X采用的是3倍率的分辨率(3X)使用3倍图 iphone 4、5、6(2X)使用2倍图 开发的时候我们按照1倍屏来做。所以上面的3倍屏要…