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

动画库animate.css的用法

时间:2017-12-20 03:46:54      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:safari   logs   ble   body   pos   class   ima   anim   obb   

简介

animate.css是一个来自国外的 CSS3 动画库,它预设了引起弹跳(bounce)、摇摆(swing)、颤抖(wobble)、抖动(shake)、闪烁(flash)、翻转(flip)、旋转(rotate)、淡入淡出(fade)、滑动(Sliding)、光速(lightspeed)、缩放变焦(Zoom)、翻滚(roll)等多达 70 多种动画效果,借助 animate.css 能够很方便、快速的制作 常见的动画效果。当然animate.css只兼容支持 CSS3 animate 属性的浏览器,他们分别是:IE10+、Firefox、Chrome、Opera、Safari。

使用方法

1、引入文件
<link rel="stylesheet" href="animate.min.css">


2、在html中调用
<h1 class="animated bounceOut">Animate.css</h1>
给元素加上class属性,animated是必须加的,bounceOut是动画效果的名称。


也可以使原生JS或得Jquery动态添加使用动画,只要在需要动画的元素的class上加对应的动画名称即可,比如

$(function(){
    $(‘#jqhtml‘).addClass(‘animated bounce‘);
});



animate.css 的默认设置也许有些时候并不是我们想要的,所以你可以重新设置,比如:

#jqhtml{
    animate-duration: 2s;    //动画持续时间
    animate-delay: 1s;    //动画延迟时间
    animate-iteration-count: 2;    //动画执行次数
}

<a href="http://www.jqhtml.com/yanshi?demourl=wp-content%2Fuploads%2F2017%2F01%2Ftx%2Ftx20170192%2F&demotitle=CSS3动画库animate.css">在线演示

示例

以下是前端库为大家收集的特效
66种基于animate.css的CSS消息提示动画效果
基于magnific-popup.js和animate.css的响应式lightbox特效
基于Animate.css的炫酷jQuery消息通知框插件
SVG文字动画特效插件AnimatedLetters
基于Animate.css的jQuery全屏幻灯片插件

下载地址

http://www.jqhtml.com/910.html

动画库animate.css的用法

标签:safari   logs   ble   body   pos   class   ima   anim   obb   

原文地址:http://www.cnblogs.com/wwhhq/p/8067768.html

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