CSS3 elements Simple Flicker effect implementation (HTML5 jquery) _javascript tips

Source: Internet
Author: User

CSS3 Animation:

Copy Code code as follows:

@-webkit-keyframes twinkling{/* Transparency from 0 to 1*/
0%{
opacity:0; /* Transparency is 0*/
}
100%{
Opacity:1; /* Transparency is 1*/

}
}


Jquery:
Copy Code code as follows:

$ (Element). css ({"-webkit-animation": "twinkling 1s infinite ease-in-out"}); To add a flashing animation to an object element

You can also add the following in CSS styles:
Copy Code code as follows:

#element {

-webkit-animation:twinkling 1s infinite ease-in-out;
}


Note: The animation name is twinkling time is 1s animation number of times is an infinite animation effect ease-in-out

It's easy! In fact, use CSS3 to do animation effect, than with flash,javascript to be more convenient and simpler! Hope that the browser quickly support CSS3 Animation. Currently WebKit kernel browser support (safrai,chrome)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.