jQuery - 如何从一种颜色淡入/淡出到另一种颜色? (可能是 jQuery 的第 3 方插件吗?)
我正在寻找一个 jQuery 脚本或第三方 jQuery 插件,它可以根据“从颜色”和“到颜色”创建淡入/淡出效果。我如何看待它的例子:
$( selector ).fadeColor({
from: "#900", // maroon-red color
to: "#f00", // blood-red color
}, 3000); // last argument is the time interval, in milliseconds in this particular case it's based for 3 seconds
I'm looking for a jQuery script or a 3rd party plugin for jQuery, which can create a fade in/out effect based on "from color" and "to color". Example how I see it:
$( selector ).fadeColor({
from: "#900", // maroon-red color
to: "#f00", // blood-red color
}, 3000); // last argument is the time interval, in milliseconds in this particular case it's based for 3 seconds
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
jQuery UI 扩展了 jQuery 的
animate
方法来包含彩色动画。然后您可以执行以下操作:这是一个工作示例。
jQuery UI extends jQuery's
animate
method to include colour animation. You can then do something like:Here's a working example.
您不需要其他插件。示例:
jQuery
CSS
这将工作得很好(并且不会减慢网站速度)。
You don't need another plugin. Example:
jQuery
CSS
This will work just fine (and without slowing down the website).
jQuery UI 动画函数 可以做到这一点。
请参阅此处了解 jsFiddle。
The jQuery UI animate function will do it.
See here for jsFiddle.
这是我的 2 美分价值 - 一个 jsFiddle 的连续脉动按钮,在文档加载时触发。
此处演示
Here's my 2 cents worth - a jsFiddle of a continuously pulsating button, triggered when the document loads.
Demo here