Jquery UI vibration effect

Source: Internet
Author: User

If you want some parts of your blog page to attract the attention of readers, you can shake these parts, such as advertisements. Today this article will introduce how to shake the elements on your page. To achieve this goal, we need to use Jquery and Jquery UI. First, let me create a vibration block, which can be an image or a common dom element, such as div and span. Name the element id as shake, which can be any name here. We use the image below: [html] Jquery UI does not have a ready-made method to shake elements, we need to use the effect method to achieve, syntax: [javascript] effect ('shake ', options, speed); Parameter options (three parameters are available here): times: specifies the number of element vibrations distance: specify the Element Vibration Amplitude ction: Specify the vibration direction of the element. The following is the specific implementation method. Set the vibration to three times and call the vibration every MS: [javascript] function interval () {$ ('# shake '). effect ('shake ', {times: 3}, 100) ;}$ (document ). ready (function () {Var shake = setInterval (interval, 500 );}); before that, you need to introduce Jquery and Jquery UI [html] <script src = "http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"> </script> <script src = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"> </script> here I introduced the latest version. The complete code [html]

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.