Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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>
 
PREVIOUS NEXT
Tagged: #css #animation #fade #delay
ADD COMMENT
Topic
Name
8+4 =