- Happy slideshow is a creative After Effects Transition Template. It features 14 text placeholders, 14 video placeholders, and 1 logo placeholder. The video tutorial is included. The slideshow is an energetically animated template with simple, cinematic light leak effects.
- In this Adobe After Effects Tutorial, I'll show you how to make three slide transitions using shapes, motion tile, and rotation. Timestamps0:00 - 0:22 - Intr.
- jQuery Tutorial
- jQuery UI
- jQuery References
Slide Transitions is an After Effects presets pack that contains a small collection of powerful looking transitioning effects. This pack contains 10 in and 10 out slide transitions. A cool way to enhance the look and feel of your TV shows, commercials, trailers, teasers, corporate presentations, business slideshows, promotions, and events videos. Im SORRY its been 10 months (almost a whole year wtf) since ive uploaded a tutorial but im finally on summer break so woohoo i guess:p anyways this all took. 30 Free Line Transitions is a universal and dynamic template for After Effects. Simply create a smooth and elegantly animated slideshow with clean and simple line transitions. It's well organized and easy to edit. Including 30 image/video placeholders and unique transitions.
Transition Slide Examples
- jQuery Plugins

- jQuery Useful Resources
- Selected Reading
jQuery provides a trivially simple interface for doing various kind of amazing effects. jQuery methods allow us to quickly apply commonly used effects with a minimum configuration. This tutorial covers all the important jQuery methods to create visual effects.
Showing and Hiding Elements
The commands for showing and hiding elements are pretty much what we would expect − show() to show the elements in a wrapped set and hide() to hide them.
Syntax
Here is the simple syntax for show() method −
Here is the description of all the parameters −
speed − A string representing one of the three predefined speeds ('slow', 'normal', or 'fast') or the number of milliseconds to run the animation (e.g. 1000).
callback − This optional parameter represents a function to be executed whenever the animation completes; executes once for each element animated against.
Following is the simple syntax for hide() method −
Here is the description of all the parameters −

speed − A string representing one of the three predefined speeds ('slow', 'normal', or 'fast') or the number of milliseconds to run the animation (e.g. 1000).
callback − This optional parameter represents a function to be executed whenever the animation completes; executes once for each element animated against.
Example
Consider the following HTML file with a small JQuery coding −
This will produce following result −
Toggling the Elements
jQuery provides methods to toggle the display state of elements between revealed or hidden. If the element is initially displayed, it will be hidden; if hidden, it will be shown.

Syntax
Here is the simple syntax for one of the toggle() methods −
Here is the description of all the parameters −


speed − A string representing one of the three predefined speeds ('slow', 'normal', or 'fast') or the number of milliseconds to run the animation (e.g. 1000).
callback − This optional parameter represents a function to be executed whenever the animation completes; executes once for each element animated against.
Example
We can animate any element, such as a simple <div> containing an image −
Split Slide Transition After Effects
This will produce following result −
JQuery Effect Methods
After Effects Slide Transition
You have seen basic concept of jQuery Effects. Following table lists down all the important methods to create different kind of effects −
| Sr.No. | Methods & Description |
|---|---|
| 1 | animate( params, [duration, easing, callback] ) A function for making custom animations. |
| 2 | fadeIn( speed, [callback] ) Fade in all matched elements by adjusting their opacity and firing an optional callback after completion. |
| 3 | fadeOut( speed, [callback] ) Fade out all matched elements by adjusting their opacity to 0, then setting display to 'none' and firing an optional callback after completion. |
| 4 | fadeTo( speed, opacity, callback ) Fade the opacity of all matched elements to a specified opacity and firing an optional callback after completion. |
| 5 | hide( ) Hides each of the set of matched elements if they are shown. |
| 6 | hide( speed, [callback] ) Hide all matched elements using a graceful animation and firing an optional callback after completion. |
| 7 | show( ) Displays each of the set of matched elements if they are hidden. |
| 8 | show( speed, [callback] ) Show all matched elements using a graceful animation and firing an optional callback after completion. |
| 9 | slideDown( speed, [callback] ) Reveal all matched elements by adjusting their height and firing an optional callback after completion. |
| 10 | slideToggle( speed, [callback] ) Toggle the visibility of all matched elements by adjusting their height and firing an optional callback after completion. |
| 11 | slideUp( speed, [callback] ) Hide all matched elements by adjusting their height and firing an optional callback after completion. |
| 12 | stop( [clearQueue, gotoEnd ]) Stops all the currently running animations on all the specified elements. |
| 13 | toggle( ) Toggle displaying each of the set of matched elements. |
| 14 | toggle( speed, [callback] ) Toggle displaying each of the set of matched elements using a graceful animation and firing an optional callback after completion. |
| 15 | toggle( switch ) Toggle displaying each of the set of matched elements based upon the switch (true shows all elements, false hides all elements). |
| 16 | jQuery.fx.off Globally disable all animations. |
UI Library Based Effects
To use these effects you can either download latest jQuery UI Library jquery-ui-1.11.4.custom.zip from jQuery UI Library or use Google CDN to use it in the similar way as we have done for jQuery.
We have used Google CDN for jQuery UI using following code snippet in the HTML page so we can use jQuery UI −
| Sr.No. | Methods & Description |
|---|---|
| 1 | Blind Blinds the element away or shows it by blinding it in. |
| 2 | Bounce Bounces the element vertically or horizontally n-times. |
| 3 | Clip Clips the element on or off, vertically or horizontally. |
| 4 | Drop Drops the element away or shows it by dropping it in. |
| 5 | Explode Explodes the element into multiple pieces. |
| 6 | Fold Folds the element like a piece of paper. |
| 7 | Highlight Highlights the background with a defined color. |
| 8 | Puff Scale and fade out animations create the puff effect. |
| 9 | Pulsate Pulsates the opacity of the element multiple times. |
| 10 | Scale Shrink or grow an element by a percentage factor. |
| 11 | Shake Shakes the element vertically or horizontally n-times. |
| 12 | Size Resize an element to a specified width and height. |
| 13 | Slide Slides the element out of the viewport. |
| 14 | Transfer Transfers the outline of an element to another. |
