鼠标悬停,背景色渐变

简单实现,没有添加额外效果

<div>div>

css代码

div
{
width:300px;
height:300px;
background:blue;
transition:background 1s;
}
div:hover
{
background:#666;
}

你可能感兴趣的:(鼠标悬停)