Phiên bản đầy đủ: jsB@nk » Liên kết » Chuyển màu » Liên kết đổi màu tự động
URL: https://www.javascriptbank.com/flashing-links.html
Hiệu ứng làm cho liên kết có thể tự động đổi sang các màu khác nhau.
Phiên bản đầy đủ: jsB@nk » Liên kết » Chuyển màu » Liên kết đổi màu tự động
URL: https://www.javascriptbank.com/flashing-links.html
<SCRIPT LANGUAGE="JavaScript"><!-- Beginfunction initArray() {for (var i = 0; i < initArray.arguments.length; i++) {this[i] = initArray.arguments[i];}this.length = initArray.arguments.length;}var colors = new initArray("red","blue","green","purple","black","tan","red");delay = .5; // secondslink = 0;vlink = 2;function linkChange() {link = (link+1)%colors.length;vlink = (vlink+1)%colors.length;document.linkColor = colors[link];document.vlinkColor = colors[vlink];setTimeout("linkChange()",delay*1000);}linkChange();// End --></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<a href=http://www.javascriptbank.com>Flashing Color Link</a><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->