JavaScript特效(新)这里有许多的JAVA特效.供学者参考

源代码在线查看: 不断变化的链接框体.txt

软件大小: 1486 K
上传用户: yuexiaolin12345
关键词: JavaScript JAVA
下载地址: 免注册下载 普通下载 VIP

相关代码

				不断变化的链接框体
				脚本说明:
				把如下代码加入区域中
				
				
				//by Leif King e-mail:leif.d.king@vanderbilt.edu
				//Feel free to use this or modify it Please leave this comment.
				
				function makeArray(q){
				for(i=1 ; i < q ; i++){this[i]=0}}
				w=1;
				howmanysites=4; // How many sites are listed below?
				
				Sites = new makeArray(howmanysites);
				
				Sites[1] = "http://www.js-planet.com|Great scripts!";
				//put yoursites then | and what you want the box to show here's where I got the orig.
				Sites[2] = "http://www.geocities.com|Free webspace!";
				Sites[3] = "http://www.yahoo.com|Great Search Engine!";
				
				function showSites() {
				if (w > howmanysites) { w=1; };
				var string=Sites[w] + "";
				var split=string.indexOf("|");
				var url=string.substring(0,split);
				var word=string.substring(split + 1,string.length);
				document.form.url.value=url;
				document.form.word.value=word;
				w+=1;
				window.setTimeout('showSites()',5000);
				
				}
				function visitSite() {
				window.location=document.form.url.value;
				}
				
				
				
				
				
				
				
				
				
				
				
				showSites();
				
							

相关资源