Fadint链接到另一种颜色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fadint链接到另一种颜色相关的知识,希望对你有一定的参考价值。

  1. /* plugin */
  2. jQuery.fn.dwFadingLinks = function(settings) {
  3. settings = jQuery.extend({
  4. color: '#ff8c00',
  5. duration: 500
  6. }, settings);
  7. return this.each(function() {
  8. var original = $(this).css('color');
  9. $(this).mouseover(function() { $(this).animate({ color: settings.color },settings.duration); });
  10. $(this).mouseout(function() { $(this).animate({ color: original },settings.duration); });
  11. });
  12. };
  13.  
  14. /* usage */
  15. $(document).ready(function() {
  16. $('.fade').dwFadingLinks({
  17. color: '#008000',
  18. duration: 700
  19. });
  20. });

以上是关于Fadint链接到另一种颜色的主要内容,如果未能解决你的问题,请参考以下文章

将 Arduino RGB LED 从一种颜色褪色到另一种颜色?

原创技术分享200SMART通过TCP协议创建到另一设备的链接

jQuery:如何通过控制台转换到另一种背景颜色? [复制]

51nod1445(最短路)

如何检查A列是不是链接到另一列A中的一个或多个

Oracle PL/SQL 和 Shell 脚本:从一种模式到另一种模式