css hover delay display

Jak
Jak
Member
858 Points
132 Posts

css hover delay display

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

Share:   fb twitter linkedin
Answers
Brian
Brian
Moderator
2232 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