I have a div
and I want to have the background-color
of the div
scaling after an hover so I did the following:
li {
background-size: 0 0;
transition: background-size 2s ease-in;
-moz-transition: background-size 2s ease-in;
-web-kit-transition: background-size 2s ease-in
}
li:hover {
background-size: 100% 100%;
background-color: rgba(0, 0, 0, 0.1);
}
I want to achieve a similar effect to the toolbars buttons hover on this website: http://www.materialup.com/posts/material-admin