JQuery uses the fadein method to implement an example of the gradient effect.
This article describes how jQuery uses the fadein method to achieve the progressive effect. It analyzes the usage skills of the fadein method in jQuery in the form of a simple example and has some reference value, for more information, see
This document describes how jQuery uses the fadein method to implement the gradient effect. Share it with you for your reference. The specific analysis is as follows:
The following JS Code uses the fadein method of jQuery to control the function of gradually displaying a Specified Color Block.
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<! DOCTYPE html> <Html> <Head> <Script src = "js/jquery. min. js"> </Script> <Script> $ (Document). ready (function (){ $ ("Button"). click (function (){ $ ("# Div1"). fadeIn (); $ ("# Div2"). fadeIn ("slow "); $ ("# Div3"). fadeIn (3000 ); }); }); </Script> </Head> <Body> <P> Demonstrate fadeIn () with different parameters. </p> <Button> Click to fade in boxes </button> <Br> <Div id = "div1" Style = "width: 80px; height: 80px; display: none; background-color: red;"> </Div> <br> <Div id = "div2" Style = "width: 80px; height: 80px; display: none; background-color: green;"> </Div> <br> <Div id = "div3" Style = "width: 80px; height: 80px; display: none; background-color: blue;"> </Div> </Body> </Html> |
I hope this article will help you with jQuery programming.