This article mainly introduces jquery delete an element after the fade out effect shows the deletion process method, example analysis jquery Fadeto and Slideup methods, such as the use of techniques, very practical value, the need for friends can refer to the
This article describes how jquery removes an element and then fades out to show the removal process. Share to everyone for your reference. The specific analysis is as follows:
When we delete an element, we want to see the deletion process, and the effect is to show the dynamic deletion process by fading out the elements.
?
1 2 3 4 5 6 7 |
$ ("#myButton"). Click (function () {$ ("#myDiv"). Fadeto ("Slow", 0.01, function () {//fade $ (this). Slideup ("Slow", function () {//slide up $ (a). Remove ();//then remove from the DOM}); }); }); |
I hope this article will help you with your jquery programming.