This article mainly introduces jquery's method for implementing the display of fadeIn. It provides an example of how to use the fadeIn method in jQuery, for more information about how to use jquery to display fadeIn, see the following example. Share it with you for your reference. The specific implementation method is as follows:
$ (Function () {// flip display $ ("# zuixin p: not (: first)" ).css ("display", "none "); var B = $ ("# zuixin p: last"); var C = $ ("# zuixin p: first"); setInterval (function () {if (B. is (": visible") {C. fadeIn (500 ). addClass ("in"); B. hide ()} else {$ ("# zuixin p: visible "). addClass ("in"); $ ("# zuixin p. in "). next (). fadeIn (500); $ ("p. in "). hide (). removeClass ("in") ;}}, 3000); // switch one entry every 3 seconds. You can change it as needed });
I hope this article will help you with jQuery programming.