Home > Web Front-end > JS Tutorial > In jQuery: animated selector usage example_jquery

In jQuery: animated selector usage example_jquery

WBOY
Release: 2016-05-16 16:23:24
Original
1446 people have browsed it

The example in this article describes the usage of :animated selector in jQuery. Share it with everyone for your reference. The specific analysis is as follows:

This selector matches all elements that are performing animation effects.
Custom animations can be created using the animate() method.

Grammar structure:

Copy code The code is as follows:
$(":animated")

This selector is generally used in conjunction with other selectors, such as class selectors, element selectors, etc. For example:
Copy code The code is as follows:
$("li:animated").css("background-color"," blue")

The above code can set the background color of the li element being animated to blue.
If not used with other selectors, the default state is to be used with the * selector, for example, $(":animated") is equivalent to $("*:animated").

Example code:

Copy code The code is as follows:






Script Home












The above can set the background color of animated elements to blue.

I hope this article will be helpful to everyone’s jQuery programming.

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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template