Pat*_*Pat 24
当然,您可以直接在以下位置使用过渡属性background-color:
div {
background-color: white;
/* transition the background-color over 1s with a linear animation */
transition: background-color 1s linear;
}
/* the :hover that causes the background-color to change */
div:hover {
background-color: transparent;
}
Run Code Online (Sandbox Code Playgroud)