css背景颜色过渡动画
时间: 2023-11-07 09:03:53 浏览: 312
6种CSS3平滑过渡的渐变背景颜色
要创建CSS背景颜色的过渡动画,您可以使用CSS的transition属性。下面是一个例子,将按钮的背景颜色从灰色渐变到蓝色,并且在0.5秒内完成过渡效果:
```css
button {
background-color: gray;
transition: background-color 0.5s ease-in-out;
}
button:hover {
background-color: blue;
}
```
在上面的示例中,当鼠标悬停在按钮上时,按钮的背景颜色将以0.5秒的时间由灰色过渡到蓝色。
阅读全文