JQuery Animation Effects Tutorial videos for Beginner - PowerPoint PPT Presentation

About This Presentation
Title:

JQuery Animation Effects Tutorial videos for Beginner

Description:

Through our JQuery Animation Effects Tutorial,you can start learning JQuery and the verious animation effects that are used to style the webpages – PowerPoint PPT presentation

Number of Views:73

less

Transcript and Presenter's Notes

Title: JQuery Animation Effects Tutorial videos for Beginner


1
JQuery Animation Effects Tutorial Videos for
Beginner by
2
Highlights
  • Basic Effects
  • Sliding Effects
  • Custom Effects
  • Fading Effects

3
JQuery Effects
JQuery library provides numerous techniques for
adding animation to a web page.
4
Basic Effects
  • These effects are three types, they are .hide(),
    .show(), .toggle()
  • .hide() method hides the matched elements.
  • .show() method Displays the matched elements.
  • .toggle() method Displays or hides the matched
    elements.
  • Syntax (selector).hide(speed, callback)
  • (selector).show(speed, callback)
  • (selector).toggle(speed, callback)

5
Sliding Effects
  • Slide methods slide elements up and down.
    slideDown(), slideUp(), slideToggle().
  • slideDown() method is used to slide down an
    element.
  • Syntax (selector).slideDown(speed, callback)
  • slideUp() method is used to slide up an element.
  • Syntax (selector).slideUp(speed, callback)
  • slideToggle() method toggles between the
    slideDown() and slideUp() methods.
  • Syntax (selector).slideToggle(speed,
    callback)

6
Custom Effects
  • Custom effects allow you to create effects that
    are not provided "out of the box" by jQuery.
  • .animate() Perform a custom animation of a set of
    CSS properties.
  • .clearQueue() Remove from the queue all items
    that have not yet been run.
  • .delay() Set a timer to delay execution of
    subsequent items in the queue.
  • .dequeue() Execute the next function on the queue
    for the matched elements.

7
Custom Effects
  1. .finish() Stop the currently-running animation,
    remove all queued animations, and complete all
    animations for the matched elements.
  2. jQuery.fx.interval The rate (in milliseconds) at
    which animations fire.
  3. jQuery.fx.off Globally disable all animations.
  4. jQuery.speed Creates an object containing a set
    of properties ready to be used in the definition
    of custom animations.
  5. .queue() Show or manipulate the queue of
    functions to be executed on the matched elements.
  6. .stop() Stop the currently-running animation on
    the matched elements.

8
Fading Effects
  • These effects adjust the opacity of elements.
    JQuery provides 4 fading effects
  • .fadeIn() effect displays the matched elements by
    fading them to opaque.
  • .fadeOut() effect hides the matched elements by
    fading them to transparent.
  • .fadeTo() effect adjusts the opacity of the
    matched elements.
  • .fadeToggle() effect displays or hide the matched
    elements by animating their opacity.

9
Feedback
Like It ? Hate It?
We would love to hear from you whatever you think
about the course.
Click HERE to share what you think!
10
Thank you
Thank You for Watching JQuery Animation Effects
Tutorial Videos for Beginner by
http//www.courseing.com
Write a Comment
User Comments (0)
About PowerShow.com