Animating with jQuery
jQuery provides a lot of animation methods natively, without the use of additional effects
libraries or plugins. however, many plugins contributed from the online community, including jQuery UI, the official UI library for jQuery, which extend jQuery's animation capabilities. Natively, jQuery provides methods that add sliding and fading behavior with minimal configuration, and which work cross-browser. It also exposes methods related to managing the animation queue, and provides a means for creating custom animations that work on almost all numerical CSS styles. Over the course of this book, we'll look at every
animation method that the library contains in detail. These methods are listed below:
- animate()
- clearQueue()
- delay()
- dequeue()
- fadeIn()
- fadeout()
- fadeTo()
- fadeToggle()
- hide()
- queue()
- show()
- slideDown()
- slideToggle()
- slideUp()
- stop()
- toggle()
All in all, it gives us a powerful and robust environment to easily add almost any type
of animation that we can conceive.
Animation is also a popular theme for plugins, with many available plugins that bring
different types of animations to our fingertips, for instant implementation with minimal
configuration. We'll look at several plugins later in the book.
No comments:
Post a Comment