Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

transition css

/* Transition-delay: The transition-delay property specifies a delay (in seconds) for the transition effect. */
transition-delay: 1s;

/* Transition-duration: Determines how many seconds or milliseconds a transition effect takes to complete */
transition-duration: 2s;

/* Transition-timing-function: This property allows a transition effect to change speed over its duration. */
transition-timing-function: linear;

/* Transition-property: Specifies the name of the CSS property the transition effect is for */
transition-property: none;

/* Transition: Shorthand Property. The transition property is a shorthand property for: transition-property transition-duration transition-timing-function transition-delay */
transition: all 4s ease-in-out 1s;
Source by madni.hashnode.dev #
 
PREVIOUS NEXT
Tagged: #transition #css
ADD COMMENT
Topic
Name
7+1 =