I'm trying to delay animation
Here is my css:
div { background-color: #000; height: 100px; transition-delay: 5s; transition: background-color 1s ease; } div:hover { background-color: #fff; }
When I hover over a div , the animation starts immediately, without delay. When I check the element, I see that there is a css transition-delay property. Any suggestion, why does this not work? (I use chrome)
Demo
css3
Jeanluca scaljeri
source share