码迷,mamicode.com
首页 > Web开发 > 详细

CSS3 transition 属性——逐渐变慢/匀速/加速/减速/加速然后减速

时间:2017-09-22 10:13:41      阅读:1265      评论:0      收藏:0      [点我收藏+]

标签:class   form   sso   net   bic   元素   ubi   hover   south   

transition:all 1s ease 1s

ease:

1、ease:(逐渐变慢)默认值


2、linear:(匀速)

3、ease-in:(加速)

4、ease-out:(减速)

5、ease-in-out:(加速然后减速)

6、cubic-bezier

技术分享

如:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        *{margin:0; padding: 0;}
        .icon_down{ width: 0; height: 0; border-left:20px solid transparent; border-right: 20px solid transparent; border-top:20px solid #B03939; transition: all .1s ease-in 0ms; margin:50px auto; cursor: pointer; }
        .icon_down:hover{ transform: rotate(180deg);}
    </style>
</head>
<body>
    <div class="icon_down"></div>
</body>
</html>

效果图:鼠标经过旋转180度,

技术分享技术分享

 

例子2:

把鼠标指针放到 div 元素上,其宽度会从 100px 逐渐变为 300px:

div
{
width:100px;
transition: width 2s;
-moz-transition: width 2s; /* Firefox 4 */
-webkit-transition: width 2s; /* Safari 和 Chrome */
-o-transition: width 2s; /* Opera */
}

效果图:

技术分享

鼠标经过后

技术分享

 

CSS3 transition 属性——逐渐变慢/匀速/加速/减速/加速然后减速

标签:class   form   sso   net   bic   元素   ubi   hover   south   

原文地址:http://www.cnblogs.com/huanghuali/p/7572885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!