Category: Effects

The jQuery library provides several techniques for adding animation to a web page. These include simple, standard animations that are frequently used, and the ability to craft sophisticated custom effects.

Also in: Effects > Custom
.animate()
Perform a custom animation of a set of CSS properties.

Also in: Effects > Custom | Data | Utilities
.clearQueue()
Remove from the queue all items that have not yet been run.

Also in: Effects > Custom
.delay()
Set a timer to delay execution of subsequent items in the queue.

Also in: Effects > Custom | Data | Utilities
.dequeue()
Execute the next function on the queue for the matched elements.

Also in: Effects > Fading
.fadeIn()
Display the matched elements by fading them to opaque.

Also in: Effects > Fading
.fadeOut()
Hide the matched elements by fading them to transparent.

Also in: Effects > Fading
.fadeTo()
Adjust the opacity of the matched elements.

Also in: Effects > Fading
.fadeToggle()
Display or hide the matched elements by animating their opacity.

Also in: Effects > Custom
.finish()
Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements.

Also in: Effects > Basics
.hide()
Hide the matched elements.

Also in: Effects > Custom | Deprecated > Deprecated 3.0 | Properties > Properties of the Global jQuery Object
jQuery.fx.interval
The rate (in milliseconds) at which animations fire.

Also in: Effects > Custom | Properties > Properties of the Global jQuery Object
jQuery.fx.off
Globally disable all animations.

Also in: Effects > Custom
jQuery.speed
Creates an object containing a set of properties ready to be used in the definition of custom animations.

Also in: Effects > Custom | Data | Utilities
.queue()
Show or manipulate the queue of functions to be executed on the matched elements.

Also in: Effects > Basics
.show()
Display the matched elements.

Also in: Effects > Sliding
.slideDown()
Display the matched elements with a sliding motion.

Also in: Effects > Sliding
.slideToggle()
Display or hide the matched elements with a sliding motion.

Also in: Effects > Sliding
.slideUp()
Hide the matched elements with a sliding motion.

Also in: Effects > Custom
.stop()
Stop the currently-running animation on the matched elements.

Also in: Effects > Basics
.toggle()
Display or hide the matched elements.

发布了73 篇原创文章 · 获赞 189 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/blog_programb/article/details/105570216
今日推荐