Fadint链接到另一种颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fadint链接到另一种颜色相关的知识,希望对你有一定的参考价值。
/* plugin */ jQuery.fn.dwFadingLinks = function(settings) { settings = jQuery.extend({ color: '#ff8c00', duration: 500 }, settings); return this.each(function() { var original = $(this).css('color'); $(this).mouseover(function() { $(this).animate({ color: settings.color },settings.duration); }); $(this).mouseout(function() { $(this).animate({ color: original },settings.duration); }); }); }; /* usage */ $(document).ready(function() { $('.fade').dwFadingLinks({ color: '#008000', duration: 700 }); });
以上是关于Fadint链接到另一种颜色的主要内容,如果未能解决你的问题,请参考以下文章
将 Arduino RGB LED 从一种颜色褪色到另一种颜色?
原创技术分享200SMART通过TCP协议创建到另一设备的链接