文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

CSS样式更改之如何实现过渡与动画

2024-04-02 19:55

关注

本篇内容介绍了“CSS样式更改之如何实现过渡与动画”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

1.过渡
元素从一种样式逐渐改变为另一种的样式 。

div { transition: width 1s; -moz-transition: width 1s;   -webkit-transition: width 1s;   -o-transition: width 1s;   } transition-property:应用过渡的Css属性的名称 比如宽度width transition-duration:过渡效果花费的时间   比如1s transition-timing-function:渡效果的时间曲线 如下所示: linear 匀速 ease 先慢后快 ease-in 慢速开始 ease-out 慢速结束 ease-in-out 慢速开始和结束 cubic-bezier(n,n,n,n) 在cubic-bezie 函数中定义自己的值,可能的值是0至1之间的数值 transition-delay:过渡效果何时开始 如1s

2.动画 Animation
1).首先定义@keyframes 规则

@keyframes my { from {background: red;} to {background: yellow;} }  @-moz-keyframes my  { from {background: red;} to {background: yellow;} }  @-webkit-keyframes my  { from {background: red;} to {background: yellow;} }  @-o-keyframes my  { from {background: red;} to {background: yellow;} }

为了丰富元素的变化过程,你可以把from  to改为百分比的样子:

@keyframes my { 0%   {background: red;} 25%  {background: yellow;} 50%  {background: blue;} 100% {background: green;} }  @-moz-keyframes my  { 0%   {background: red;} 25%  {background: yellow;} 50%  {background: blue;} 100% {background: green;} }  @-webkit-keyframes my  { 0%   {background: red;} 25%  {background: yellow;} 50%  {background: blue;} 100% {background: green;} }  @-o-keyframes my  { 0%   {background: red;} 25%  {background: yellow;} 50%  {background: blue;} 100% {background: green;} }

定义好了,接下来我们就可以启动我们的动画了。

2).animation启动动画效果

div { animation-name: my; animation-duration: 5s; animation-timing-function: linear; animation-delay: 2s; animation-iteration-count: infinite; animation-direction: alternate; animation-play-state: running;  -moz-animation-name: my; -moz-animation-duration: 5s; -moz-animation-timing-function: linear; -moz-animation-delay: 2s; -moz-animation-iteration-count: infinite; -moz-animation-direction: alternate; -moz-animation-play-state: running;  -webkit-animation-name: my; -webkit-animation-duration: 5s; -webkit-animation-timing-function: linear; -webkit-animation-delay: 2s; -webkit-animation-iteration-count: infinite; -webkit-animation-direction: alternate; -webkit-animation-play-state: running;  -o-animation-name: my; -o-animation-duration: 5s; -o-animation-timing-function: linear; -o-animation-delay: 2s; -o-animation-iteration-count: infinite; -o-animation-direction: alternate; -o-animation-play-state: running; }  animation-name                   选择器的 keyframes 的名称 animation-duration               动画所花费的时间 animation-timing-function        匀速播放动画 animation-delay           动画过多久开始 animation-iteration-count        播放动画次数 animation-direction       是否在下一周期逆向地播放 normal 正常播放  alternate 轮流反向播放 animation-play-state             暂停动画  paused 动画已暂停  running 动画正在播放 animation-fill-mode none         不填充 forwards     当动画完成后,保持最后一个属性值 backwards     在animation-delay 所指定的一段时间内,在动画显示之前,应用开始属性值 both        向前和向后填充模式都被应用。

“CSS样式更改之如何实现过渡与动画”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯