Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css transition delay after hover

/* These transition properties apply on "mouseout" */
#bar { transition:height .5s ease-out 1s; } 

/* These transition properties apply on hover */
#bar:hover { transition:height .5s ease-out 0s; }
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #css #transition #delay #hover
ADD COMMENT
Topic
Name
3+7 =