css hover delay display

Jak
Jak
908 Points
132 Posts

css hover delay display

Views: 8933
Total Answered: 1
Total Marked As Answer: 0
Posted On: 25-May-2015 02:54

Share:   fb twitter linkedin
Answers
Brian
Brian
2416 Points
14 Posts
         

Hi Jak,

you can use transitions to delay the :hover effect you want 

div
{
 
transition: 0s background-color;
}
 
div:hover
{
 
background-color: red;
 
transition-delay: 1s;
}

 

Posted On: 25-May-2015 08:53
 Log In to Chat