头闻号

上虞市曹娥街道三林保温材料经营部

保温、隔热材料|泡沫塑料|工业用橡胶制品|耐火、防火材料

首页 > 新闻中心 > 科技常识:CSS3中Animation动画属性用法详解
科技常识:CSS3中Animation动画属性用法详解
发布时间:2023-02-01 10:52:56        浏览次数:2        返回列表

今天小编跟大家讲解下有关CSS3中Animation动画属性用法详解 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关CSS3中Animation动画属性用法详解 的相关资料,希望小伙伴们看了有所帮助。

要使用animation动画,先要熟悉一下keyframes,Keyframes的语法规则:命名是由”@keyframes”开头,后面紧接着是这个“动画的名称”加上一对花括号“{}”,括号中就是一些不同时间段样式规则。不同关键帧是通过from(相当于0%)、to(相当于100%)或百分比来表示(为了得到最佳的浏览器支持,建议使用百分比),如下定义一个简单的动画:

CSS Code复制内容到剪贴板 @keyframesmyfirst { 0%{background:red;left:0px;top:0px;} 25%{background:yellow;left:200px;top:0px;} 50%{background:blue;left:200px;top:200px;} 75%{background:green;left:0px;top:200px;} 100%{background:red;left:0px;top:0px;} }

@keyframes定义好了,要使其能发挥效果,必须通过animation把它绑定到一个选择器,否则动画不会有任何效果。下面列出了animation的属性:

下面设置上述的所有属性

CSS Code复制内容到剪贴板 animation-name:myfirst; animation-duration:5s; animation-timing-function:linear; animation-delay:1s; animation-iteration-count:infinite; animation-direction:alternate; animation-play-state:running;

上述所有代码可以如下简写:

CSS Code复制内容到剪贴板 animation:myfirst5slinear2sinfinitealternate; animation-play-state:running;

浏览器兼容性

Internet Explorer 10、Firefox 以及 Opera 支持 @keyframes 规则和 animation 属性。

Chrome 和 Safari 需要前缀 -webkit-。

注意:Internet Explorer 9,以及更早的版本,不支持 @keyframe 规则或 animation 属性。

下面给出上面介绍的关于keyframes和animation属性的完整代码示例:

XML/HTML Code复制内容到剪贴板 <!DOCTYPEhtml> <htmllang="en"> <head> <metacharset="UTF-8"> <title>animation演示</title> <style> div { width:100px; height:100px; background:red; position:relative; animation-name:myfirst; animation-duration:5s; animation-timing-function:linear; animation-delay:1s; animation-iteration-count:infinite; animation-direction:alternate; animation-play-state:running; -webkit-animation-name:myfirst; -webkit-animation-duration:5s; -webkit-animation-timing-function:linear; -webkit-animation-delay:1s; -webkit-animation-iteration-count:infinite; -webkit-animation-direction:alternate; -webkit-animation-play-state:running; } @keyframesmyfirst { 0%{background:red;left:0px;top:0px;} 25%{background:yellow;left:200px;top:0px;} 50%{background:blue;left:200px;top:200px;} 75%{background:green;left:0px;top:200px;} 100%{background:red;left:0px;top:0px;} } @-webkit-keyframesmyfirst { 0%{background:red;left:0px;top:0px;} 25%{background:yellow;left:200px;top:0px;} 50%{background:blue;left:200px;top:200px;} 75%{background:green;left:0px;top:200px;} 100%{background:red;left:0px;top:0px;} } </style> </head> <body> <p>该实例在InternetExplorer9及更早IE版本是无效的。</p> <div></div> </body> </html>

上面代码演示了一个正方形沿着一个正方形轨迹运动,基数次按正方向运动,偶数次按反方向运动,运动过程中还带有颜色变化。具体效果,读者可以自行运行代码观察。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持爱蒂网。

来源:爱蒂网