gpt4 book ai didi

javascript - 如何使用淡入/淡出更改 div 背景颜色?

转载 作者:行者123 更新时间:2023-11-28 02:36:44 32 4
gpt4 key购买 nike

如何使用淡入/淡出更改div背景颜色,我只想淡出背景颜色,而不是背景图像,请给我一些有用的代码或解决方案

最佳答案

虽然only supported by modern browsers您也可以考虑使用 CSS transitions达到同样的效果

HTML

<div class='foobar'></div>

CSS

.foobar {
/* transition properties */
transition: background-color 2s;
-moz-transition: background-color 2s;
-webkit-transition: background-color 2s;
-o-transition: background-color 2s;

/* basic styling & initial background-color */
background-color:maroon;
width:100px;
height:100px;
}

/* Change background color on mouse over */
.foobar:hover {
background-color:blue;
}

此处的工作示例,http://jsfiddle.net/eRW57/14/

关于javascript - 如何使用淡入/淡出更改 div 背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13372080/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com