JQuery effect-Fade in

Source: Internet
Author: User

Instance
JQuery FadeIn ()
Demonstrates the JQuery FadeIn () method.
JQuery FadeOut ()
Demonstrates the JQuery FadeOut () method.
JQuery Fadetoggle ()
Demonstrates the JQuery Fadetoggle () method.
JQuery FadeTo ()
demonstrates the JQuery FadeTo () method.
JQuery Fading Method

With JQuery, you can implement the fade-out effect of elements.

JQuery has the following four methods of fade:

    • FadeIn ()
    • FadeOut ()
    • Fadetoggle ()
    • FadeTo ()
JQuery FadeIn () method

JQuery fadeIn () is used to fade in hidden elements.

Grammar:
$ (selector). FadeIn (Speed,callback);

The optional speed parameter specifies the length of the effect. It can take the following values: "Slow", "fast", or milliseconds.

The optional callback parameter is the name of the function that is executed after fading completes.

The following example shows the FadeIn () method with different parameters:

Instance
$ ("button"). Click (function () {  $ ("#div1"). FadeIn ();  $ ("#div2"). FadeIn ("slow");  $ ("#div3"). FadeIn (3000);});
JQuery FadeOut () method

The JQuery FadeOut () method is used to fade out visible elements.

Grammar:
$ (selector). FadeOut (Speed,callback);

The optional speed parameter specifies the length of the effect. It can take the following values: "Slow", "fast", or milliseconds.

The optional callback parameter is the name of the function that is executed after fading completes.

The following example shows the FadeOut () method with different parameters:

Instance
$ ("button"). Click (function () {  $ ("#div1"). FadeOut ();  $ ("#div2"). FadeOut ("slow");  $ ("#div3"). FadeOut (3000);});
JQuery Fadetoggle () method

The JQuery Fadetoggle () method can be toggled between the fadeIn () and the FadeOut () method.

If the element has faded out, fadetoggle () adds a fade effect to the element.

If the element has been faded in, fadetoggle () adds a fade effect to the element.

Grammar:
$ (selector). Fadetoggle (Speed,callback);

The optional speed parameter specifies the length of the effect. It can take the following values: "Slow", "fast", or milliseconds.

The optional callback parameter is the name of the function that is executed after fading completes.

The following example shows the Fadetoggle () method with different parameters:

Instance
$ ("button"). Click (function () {  $ ("#div1"). Fadetoggle ();  $ ("#div2"). Fadetoggle ("slow");  $ ("#div3"). Fadetoggle (3000);});
JQuery FadeTo () method

The JQuery FadeTo () method allows the gradient to be given opacity (values between 0 and 1).

Grammar:
$ (selector). FadeTo (Speed,opacity,callback);

The required speed parameter specifies the length of the effect. It can take the following values: "Slow", "fast", or milliseconds.

The required opacity parameter in the FadeTo () method sets the fade effect to the given opacity (values between 0 and 1).

The optional callback parameter is the function name that is executed after the function completes.

The following example shows the FadeTo () method with different parameters:

Instance
$ ("button"). Click (function () {  $ ("#div1"). FadeTo ("slow", 0.15);  $ ("#div2"). FadeTo ("slow", 0.4);  $ ("#div3"). FadeTo ("slow", 0.7);});
JQuery Effect Reference Manual

For a full view of the jquery effect, please visit the jquery Effect reference manual.

JQuery effect-Fade in

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.