This article mainly introduces the use of the animated selector in jQuery. The example analyzes the functions, definitions, and usage skills of the animated selector to match animation effect elements, which has some reference value, for more information about how to use the animated selector in jQuery, see the following example. Share it with you for your reference. The specific analysis is as follows:
This selector matches all elements that are performing animation effects.
You can use the animate () method to create a custom animation.
Syntax structure:
The Code is as follows:
$ (": Animated ")
This selector should also be used with other selectors, such as class selector and element selector. For example:
The Code is as follows:
$ ("Li: animated" ).css ("background-color", "blue ")
The above Code sets the background color of the li element being animated to blue.
If it is not used with other selectors, the default state is to use with the * selector. For example, $ (": animated") is equivalent to $ ("*: animated ").
Instance code:
The Code is as follows:
Foot home