gpt4 book ai didi

jquery - 如何在jquery中缓慢改变背景属性?

转载 作者:行者123 更新时间:2023-12-01 02:48:02 25 4
gpt4 key购买 nike

我想要为背景设置动画,但它不会随 .animate 改变!

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>

$(document).ready(function() {
$(".menu").hover(
function() {
$(this).stop().animate({
"background": "-moz-radial-gradient(top, #fff, #cfcfcf)"
}, "slow");
}, function() {
$(this).stop().animate({
"background": "-moz-radial-gradient(top, #fff, #333)"
}, "slow");
});
});​

最佳答案

更简单的淡入/淡出可以满足您的需求吗?

#div1{
height:100px;
width:100px;
background-color:Black;
}​

$("#div1").click(function() {
$(this).fadeOut(1000, function() {
$(this).css("background-color", "#FF0000").fadeIn(1000);
});
});​

Simple JsFiddle Example

编辑

#div1{
height:200px;
width:200px;
background-color:Black;
float:left;
}​

$('#div1').click(function (){
$(this).animate({backgroundColor: '#FF0000'}, 1000);
});​

参见new JsFiddle (使用 jQuery UI)。我相信这会给您带来您想要的效果。

关于jquery - 如何在jquery中缓慢改变背景属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6767321/

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