Answers for "fadeout slow"

5

on click fade out jquery

$(document).ready(function(){
  $("button").click(function(){
    $("p").fadeOut(2500);
  });
});
Posted by: Guest on February-05-2020
0

css animation fade out after delay

<style>
  #text{
  transition-duration:1s; /* <= creates fade out effect */
  transition-delay:1s;
}
</style>

<p onclick="this.style.opacity=0" id="text">My text</p>
Posted by: Guest on May-26-2021
1

jquery on click fade out element

$(document).ready(function(){
  $("button").click(function(){
    $("p").fadeOut();
  });
});
Posted by: Guest on June-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language