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

Animate.css(一款有意思的CSS3动画库)

时间:2017-12-04 21:27:14      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   效果   mat   git   tag   ceo   一起   ati   duration   

官网:https://daneden.github.io/animate.css/

animate.css 是一款跨浏览器的动画库。

使用方式:

  1. 在页面的 <head>中引入样式文件:

    <head>
    <link rel="stylesheet" href="animate.min.css">
    </head>
  2. 给你想要添加动画效果的元素加上 animated 样式,如果想要动画循环执行的话,你需要加上 infinite 样式。

  3. 具体样式在官网一一列举出来啦,而且可以直接查看效果,很炫酷啊!

例子:

<h1 class="animated infinite bounce">Example</h1>

当你将 animate.css 与 jQuery 一起使用或者添加你自己的 CSS 规则时, 你可以用 animate.css 做一大堆其他的事,使用 jQuery 动态添加动画:

$(‘#yourElement‘).addClass(‘animated bounceOutLeft‘);

你也可以检测一个动画是否结束了:

$(‘#yourElement‘).one(‘webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend‘, doSomething);

注意: jQuery.one() 用在你希望只执行事件一次 的时候。

你可以改变动画的持续时间,添加延迟或改变它执行的次数:

#yourElement {
  -vendor-animation-duration: 3s;
  -vendor-animation-delay: 2s;
  -vendor-animation-iteration-count: infinite;
}

注意:确保用供应商的前缀(webkit, moz, 等等)来替换上面CSS中的 vendor

 



Animate.css(一款有意思的CSS3动画库)

标签:style   效果   mat   git   tag   ceo   一起   ati   duration   

原文地址:http://www.cnblogs.com/cjx-work/p/7978947.html

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