【发布时间】:2023-03-11 17:54:01
【问题描述】:
在网上搜索后,似乎有多种方法可以通过 jquery 为颜色设置动画。
对我来说,将“包装”的背景颜色从 #FFF 设置为 #000 的最佳方式是什么?
var open = true;
$(".btn-slide").click(function(){
if(open){
$("#wrapper").animate({
width: 900,
},
1000, function() {
});
open= false;
}else{
$("#wrapper").animate({
width: 250,
},
1000, function() {
open = true; }
});
感谢您的建议。非常感谢您的意见。
【问题讨论】:
-
你可以使用 jQuery UI 的“动画颜色”:jqueryui.com/demos/animate
标签: jquery jquery-animate background-color