How to create popup fade jQuery.

Asked By 370 points N/A Posted on -
qa-featured

Hello Experts,

I want to create a popup fade jquery Project. But i don't very much about this.

Please help me Sending Details that how can i create popup fade jquery.

SHARE
Answered By 0 points N/A #196308

How to create popup fade jQuery.

qa-featured
Pop-ups with no transition effects make them open as quickly as possible. To add transition (fade) effect used for a pop-up, include the data-transition attribute to the link that will assigns the pop-up and the reverse transition effect takes place when closing.
 
<a href="#transitionExample" data-transition="fade" data-rel="popup">
 
Fade transition
 
</a>
 
Transition effects like fade, pop or none are recommended for mobile devices especially used on larger or complex widgets within a pop-up. You must have a browser that supports 3D transforms in order to view all the transition types. Devices that lack 3D support will fallback to "fade" for all transition types. One of the example is Android 2.x devices.

Related Questions