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

animate.css

时间:2016-08-16 00:08:47      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:

这是个css3动画框架,现在很流行,在小动画效果有很多,使用的方式

<div class="animated bounce"></div>

/*只要修改bounce这个类就可以*/

 

一、atention Seekers

1、bounce

技术分享

2、flash

技术分享

3、pulse

技术分享

4、rubberBand

技术分享

5、shake

技术分享

6、swing

技术分享

7、tada

技术分享

8、wobble

技术分享

9、jello

技术分享

二、Bouncing Entrances

 1、bounceIn

技术分享

2、bounceInDown

技术分享

3、bounceInLeft

 技术分享

4、bounceInRight

技术分享

5、bounceInUp

技术分享

三、Bouncing Exits

1、bounceOut

技术分享

2、bounceOutDown

技术分享

3、bounceOutLeft

技术分享

4、bounceOutRight

技术分享

5、bounceOutUp

技术分享

四、Fading Entrances

1、fadeIn

技术分享

 

2、fadeInDown

 技术分享

 

3、fadeInDownBig

 技术分享

 

4、fadeInLeft

 技术分享

 

5、fadeInLeftBig

 技术分享

 

6、fadeInRight

 技术分享

 

7、fadeInRightBig

 技术分享

 

8、fadeInUp

 技术分享

 

9、fadeInUpBig

 技术分享

 五、Fading Exits

1、fadeOut

技术分享

 

2、fadeOutDown

 技术分享

 

3、fadeOutDownBig

 技术分享

 

4、fadeOutLeft

技术分享

 

5、fadeOutLeftBig

技术分享

 

6、fadeOutRight

技术分享

 

7、fadeOutRightBig

技术分享

 

8、fadeOutUp

技术分享

 

9、fadeOutUpBig

技术分享

六、Flippers

1、flip

技术分享

 

2、flipInX

技术分享

3、flipInY

技术分享

 

4、flipOutX

技术分享

 

5、flipOutY

技术分享

 

七、Lightspeed

1、lightSpeedIn

技术分享

 

2、lightSpeedOut

技术分享

 

八、Rotating Entrances

1、rotateIn

技术分享

 

2、rotateInDownLeft

技术分享

 

3、rotateInDownRight

技术分享

 

4、rotateInUpLeft

技术分享

 

5、rotateInUpRight

 技术分享

 

九、Rotating Exits

1、rotateOut

技术分享

 

2、rotateOutDownLeft

技术分享

 

3、rotateOutDownRight

技术分享

 

4、rotateOutUpLeft

技术分享

 

5、rotateOutUpRight

技术分享

 

十、Sliding Entrances

1、slideInUp

技术分享

 

2、slideInDown

技术分享

 

3、slideInLeft

技术分享

 

4、slideInRight

技术分享

 

5、slideOutUp

技术分享

 

6、slideOutDown

技术分享

 

7、slideOutLeft

技术分享

 

8、slideOutRight

技术分享

 

十一、Zoom Entrances

1、zoomIn

技术分享

 

2、zoomInDown

技术分享

 

3、zoomInLeft

技术分享

 

4、zoomInRight

技术分享

 

5、zoomInUp

技术分享

 

十二、Zoom Exits

1、zoomOut

技术分享

 

2、zoomOutDown

技术分享

 

3、zoomOutLeft

技术分享

 

4、zoomOutRight

技术分享

 

5、zoomOutUp

技术分享

 

十三、specials

1、hinge

技术分享

 

2、rollIn

技术分享

 

3、rollOut

 技术分享

 

奉上测试代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>animation</title>
    <link rel="stylesheet" href="./animate.css">
    <style>
    div{
        width: 100px;
        height: 100px;
        margin: 100px;
        margin-bottom: 50px;
        background: #0ff0f0;
    }
    input[type="text"]{
        outline: none;
        width: 188px;
        height: 48px;
        border: 2px solid #888;
        border-radius:10px; 
        text-align: center;
        font-weight: bold;
        font-size: 16px;
        margin-left:55px; 
    }
    input[type="button"]{
        width: 120px;
        height: 40px;
        font-family: "黑体";
        text-align: center;
        font-weight: bold;
        outline: none;
        border: 2px solid #00FFFF;
        background: #fff;
        color: #00FFFF;
        font-size: 14px;
        cursor: pointer;
        border-radius: 5px;
        margin-left:50px; 
    }
    </style>
</head>
<body>
    <div></div>
    <input type="text">
    <input type="button" value="Animate it">
    <script>
        var oBtn=document.getElementsByTagName("input")[1]; 
        var oDiv=document.getElementsByTagName("div")[0];
        var oText=document.getElementsByTagName("input")[0];
        oBtn.onclick=function(){
        oDiv.className="animated rollOut";
        var arr=oDiv.className.split(" ");
        oText.value=arr[1];
        setTimeout(function(){oDiv.className=""},1000);
        }
    </script>
</body>
</html>

 

animate.css

标签:

原文地址:http://www.cnblogs.com/zhangzhicheng/p/5774763.html

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