CSS3 element Simple flicker effect (HTML5 jquery)

Source: Internet
Author: User
CSS3 Animation:

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

Jquery:

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

You can also add the following in CSS style:

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

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

It's simple! In fact, with CSS3 animation effect, than with the flash,javascript to be more convenient and simple! I hope the browser will quickly support CSS3 Animation. Currently WebKit Kernel browser is supported (Safrai,chrome)

  • Related Article

    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.