要实现这个效果,大家可以使用:hover伪类选择器以及transition属性来设置动画效果。
button { background-color: #4CAF50; /* Set default color */ color: white; /* Set default text color */ transition: background-color 0.5s ease; /* Add transition */ } button:hover { background-color: #F44336; /* Change color on hover */ }
在这个示例中,大家设置了按钮的默认样式。然后,大家将transition属性添加到按钮上,以便悬停过渡效果更加平滑。最后,大家使用:hover伪类选择器和一个新的背景颜色来实现还原效果。
总的来说,CSS中的鼠标离开时还原效果是通过:hover伪类选择器和transition属性来实现的。它可以提高页面的用户体验,并使页面更具交互性。