+ 3
How to make FadeOut and FadeIn in Jquery using Css ?
Like Amardeep kesharwani use in storybook code
1 Antwort
+ 6
You can use the builtin functions fadeIn(), fadeOut() and fadeToggle().
$("#div1").fadeOut();
$("#div2").fadeOut("slow");
$("#div3").fadeOut(3000);
same syntax for all three methods