Answers for "css opacity animtion with delay"

CSS
2

css animation delay

/* Answer to: "css animation delay" */

/*
  The animation-delay property specifies a delay for the start of an animation.
*/

div {
  animation-delay: 2s;
}
Posted by: Guest on June-29-2020
0

opacity animation css

<style>
	.element-class {
		opacity: 0.5;
      	transition: opacity 0.5s ease-in-out;
	}
</style>
Posted by: Guest on April-21-2021

Browse Popular Code Answers by Language