I have this CSS:
.edit:hover:after{
content: '✐';
}
I want the user to place the cursor on .edit class for 2 seconds before the content appears.
I've tried with this kind of aproach and doesn't work:
.edit:hover{
-webkit-transition: 2s all;
-webkit-transition-delay: 2s;
-moz-transition: 2s all;
-moz-transition-delay: 2s;
-ms-transition: .2s all;
-ms-transition-delay: 2s;
-o-transition: 2s all;
-o-transition-delay: 2s;
transition: 2s all;
transition-delay: 2s;
}
Also tried same code on .edit:hover:after
and .edit
.
The html is a simple <td class='edit'>
element.
Is this possible with only css?