gpt4 book ai didi

jquery - 如何使用 jQuery 淡出背景颜色?

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

目前大家都在谈论两种解决方案:

  1. jQuery UI 插件 --> 不可行,因为它占用了太多空间
  2. jQuery Color (http://api.jquery.com/animate/) --> 不可行,因为我实际上无法获取要下载的插件的链接

所以我的问题是,我可以使用什么最小的插件来实现 jQuery v1.7.2 的这种效果?

最佳答案

您可以获得jQuery Color来自 GitHub 存储库的插件。

span.value {
background-color: #0f0;
}

$("span.value").animate({
backgroundColor: "transparent"
}, 'slow');

See a live example using jQuery Color.

<小时/>

您还可以使用CSS3 transitions .

span.value {
background-color: #0f0;
-o-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-webkit-transition-duration: 0.8s;
transition-duration: 0.8s;
}

.fade {
background-color: transparent;
}

$("span.value").toggleClass("fade");

See a live example using CSS· transitions.

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

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