您好,匿名用户
随意问技术百科期待您的加入

js如何实现文字颜色渐变

0 投票

javascript如何实现鼠标hover链接,链接字体颜色渐变?

用户头像 提问 2012年 12月1日 @ Aphrodite 上等兵 (185 威望)
分享到:

1个回答

0 投票

修正:
第一次没有仔细读官方文档,jQuery 原生不支持 color 的 animate,因为 color 的值不是数字。谢谢 @airyland 及 @冰剑 的纠正。

All animated properties should be animated to a single numeric value, except as noted below; most properties that are non-numeric cannot be animated using basic jQuery functionality (For example, width, height, or left can be animated but background-color cannot be, unless the jQuery.Color() plugin is used). Property values are treated as a number of pixels unless otherwise specified. The units em and % can be specified where applicable.

让 animate 支持 color,有以下三种方法:
1. 引入 jQuery UI
2. 引入 jQuery color
3. 引入 jQuery color animation

可以使用 jQuery 提供的 animate 方法,具体参考:http://api.jquery.com/animate/

比如本页面上作者名链接,简单示例:

$('.post-author a').on('hover', function(){
  $(this).animate({ color: '#ffffff'}, 5000)
})
用户头像 回复 2012年 12月1日 @ Mordekaiser 上等兵 (232 威望)
提一个问题:

相关问题

0 投票
1 回复 36 阅读
0 投票
1 回复 44 阅读
0 投票
1 回复 29 阅读
0 投票
1 回复 13 阅读
用户头像 提问 2014年 3月7日 @ Nami 列兵 (71 威望)
0 投票
1 回复 95 阅读

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...