Home > Web Front-end > H5 Tutorial > body text

基于轻量级高性能的CSS3动画库

WBOY
Release: 2016-05-17 09:07:00
Original
1857 people have browsed it

  简要教程

  Repaintless.css是一款轻量级高性能的CSS3动画库。Repaintless.css通过特殊的方法来制作元素动画,不会引起页面的重绘,使它比其它CSS动画库具有更高的性能。


基于轻量级高性能的CSS3动画库


  安装

  你可以通过bower或npm来安装Repaintless.css。


$ bower install repaintless
$ npm install repaintless     
Copy after login

  

  使用方法

  使用该CSS3动画库需要在页面中引入repaintless.css文件。


<link href="path-to-css-directory/repaintless.css" rel="stylesheet"></link>  
Copy after login

  

  HTML结构

  要使一个元素可以动画,你需要做的就是为该元素添加element-animated class,这个是必须添加的class类,然后使用第二个class类来指明你需要的动画类型。


<div class="element-animated tremble"> I tremble! </div>     
Copy after login

  

  默认情况下动画的时间是1秒钟。你可以通过class short来指定动画时间为0.5秒,long为2秒。如果你需要做无穷动画,可以添加infinite class。


<div class="element-animated slide-from-top short">
  I am quick! 
</div>
 
<div class="element-animated slide-from-top long"> 
  I am slooow... 
</div>
 
<div class="element-animated slide-from-top infinite"> 
  I will do that forever to drive you crazy! 
</div>            
Copy after login

  

  动画类型

  Repaintless.css所有可用的动画类型如下。某些动画是会一直循环的动画。

  slide-from-top

  slide-from-bottom

  slide-from-left

  slide-from-right

  slide-from-right-bottom

  slide-from-right-top

  slide-from-left-bottom

  slide-from-left-top

  slide-top-bottom (looped)

  slide-left-right (looped)

  tremble (looped)

  fade-in

  fade-out

  pulsate (looped)

  rotate

  Repaintless.css动画库的github地址为:https://github.com/szynszyliszys/repaintless


  来源:http://www.htmleaf.com/css3/css3donghua/201603073189.html

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!