Share a CSS3 animation library

Y2J
Release: 2017-05-20 11:46:31
Original
1320 people have browsed it

Share a CSS3 animation library

Introduction

animate.css is a CSS3 animation library from abroad. It has preset shake and flash. There are more than 60 animation effects such as , bounce, flip, rotate (rotateIn/rotateOut), fadeIn/fadeOut, etc., covering almost all common animation effects.

Although it is very convenient and fast to create CSS3 animation effects with the help of animate.css, it is still recommended to take a look at the code of animate.css. Maybe you can learn something from it.

Compatible

Browser compatibility: Of course, it is only compatible with browsers that support CSS3 animateproperty. They are: IE10+, Firefox, Chrome, Opera, and Safari.

Usage method

1. Import the file

Copy after login

2. HTML and use

Copy after login

to addclass## to the element # After refreshing the page, you can see the animation effect. animated is similar to the globalvariable, which defines the duration of the animation; bounce is the name of the specific animation effect of the animation, and you can choose any effect.

If the animation plays infinitely, you can add class infinite.

You can also add these classes to elements through

JavaScriptorjQuery, such as:

$(function(){ $('#dowebok').addClass('animated bounce'); });
Copy after login

Some animation effects will eventually make the element invisible. For example, fade out, slide left, etc., you may need to delete class

, for example:

$(function(){ $('#dowebok').addClass('animated bounce'); setTimeout(function(){ $('#dowebok').removeClass('bounce'); }, 1000); });
Copy after login

The default settings of animate.css may not be what we want in some cases, so you You can reset it, for example:

#dowebok { animate-duration: 2s; //动画持续时间 animate-delay: 1s; //动画延迟时间 animate-iteration-count: 2; //动画执行次数 }
Copy after login
Be careful to add the browser prefix.

【Related Recommendations】

1.

CSS3 Free Video Tutorial

2.

CSS3 Learning Animation Detailed Explanation

3.

CSS3 Teaching Animation Production Learning

4.

Detailed analysis of the new features in CSS3##5.

Detailed explanation about the new features of css3

The above is the detailed content of Share a CSS3 animation library. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
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!