css3中transition属性的详细介绍

这篇文章主要讲解了“css3中transition属性的详细介绍”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“css3中transition属性的详细介绍”吧!

成都创新互联专注于肃宁企业网站建设,成都响应式网站建设公司,商城网站制作。肃宁网站建设公司,为肃宁等地区提供建站服务。全流程按需网站制作,专业设计,全程项目跟踪,成都创新互联专业和态度为您提供的服务

transform呈现的是一种变形结果,而Transation呈现的是一种过渡,通俗点说就是一种动画转换过程,如渐显、渐弱、动画快慢等。transition和transform是两种不同的动画模型。

1. transition过渡属性
transition 属性是一个简写属性,用于设置四个过渡属性:
语法
transition: property duration timing-function delay;

值描述transition-property规定设置过渡效果的 CSS 属性的名称。 transition-duration规定完成过渡效果需要多少秒或毫秒。
transition-timing-function规定速度效果的速度曲线。 transition-delay定义过渡效果何时开始。

all:表示针对所有元素。
none:表示没有元素。
ident:指定CSS属性列表
注:请始终设置 transition-duration 属性,否则时长为 0,就不会产生过渡效果。transition可以和Transform同时使用。

transition:<过渡属性名称> <过渡时间> <过渡模式>

transition-timing-function 的五种取值

1.ease 逐渐变慢
2.linear 匀速
3.ease-in 缓慢开始(加速)
4.ease-out 缓慢结束(减速)
5.ease-in-out 缓慢开始,缓慢结束(先加速后减速)
6.cubic-bezier 贝塞尔曲线(matthewlein.com/ceaser)
过渡模式比如宽过渡,高过渡和all过渡

看一个实例:

代码如下:


<style type="text/css">
       .trans1{
           -webkit-transition:0.5 ease;
           -moz-transition:0.5s ease;
           -webkit-transition-property:all;
           -moz-transition-property:all;
           position:absolute;
           left:10px;
           top:50px;
           height:100px;
           width:150px;
           background:#EF4900;
           color:white;
       }
       .trans2{
           -webkit-transition:0.5 ease;
           -moz-transition:0.5s ease;
           -webkit-transition-property:width;
           -moz-transition-property:width;
           position:absolute;
           left:350px;
           top:50px;
           height:100px;
           width:150px;
           background:#EF4900;
           color:white;
       }
       .trans3{
           -webkit-transition:0.5s ease;
           -moz-transition:0.5s ease;
           -webkit-transition-property:height;
           -moz-transition-property:height;
           position:absolute;
           left:780px;
           top:50px;
           height:100px;
           width:150px;
           background:#EF4900;
           color:white;
       }
       .trans1:hover{
           width:300px;
           height:300px;
       }
       .trans2:hover{
           width:400px;
       }
       .trans3:hover{
           height:500px;
       }
   </style></p> <p><body>
   <div class="trans1">变换所有的属性</div>
   <div class="trans2">只变换宽度属性</div>
   <div class="trans3">只变换高度属性</div>
</body>

感谢各位的阅读,以上就是“css3中transition属性的详细介绍”的内容了,经过本文的学习后,相信大家对css3中transition属性的详细介绍这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是创新互联,小编将为大家推送更多相关知识点的文章,欢迎关注!

本文名称:css3中transition属性的详细介绍
文章来源:https://www.cdcxhl.com/article4/iidhie.html

成都网站建设公司_创新互联,为您提供商城网站Google用户体验网站营销品牌网站制作网站策划

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

成都网站建设公司