2016-12-17 8 views
0

これは、虹色のテキストを作成するために使用するhtmlコードです。現在、テキストはクリックすると何も行われず、非常に小さくなります。私はリンクに新しいタブを開くテキストにハイパーリンクをつけたい。私はまた、虹のテキストのサイズを50pxに設定したいと思っています。ありがとうございました。この虹のテキストにハイパーリンクが必要ですか? HTML

<script> 





var text="This is the text" 

var speed=80 

if (document.all||document.getElementById){ 
document.write('<span id="highlight">' + text + '</span>') 
var storetext=document.getElementById? document.getElementById("highlight") : document.all.highlight 
} 

else 
document.write(text) 
var hex=new Array("00","14","28","3C","50","64","78","8C","A0","B4","C8","DC","F0") 
var r=1 
var g=1 
var b=1 
var seq=1 
function changetext(){ 
rainbow="#"+hex[r]+hex[g]+hex[b] 
storetext.style.color=rainbow 
} 
function change(){ 
if (seq==6){ 
b-- 
if (b==0) 
seq=1 
} 
if (seq==5){ 
r++ 
if (r==12) 
seq=6 
} 
if (seq==4){ 
g-- 
if (g==0) 
seq=5 
} 
if (seq==3){ 
b++ 
if (b==12) 
seq=4 
} 
if (seq==2){ 
r-- 
if (r==0) 
seq=3 
} 
if (seq==1){ 
g++ 
if (g==12) 
seq=2 
} 
changetext() 
} 
function starteffect(){ 
if (document.all||document.getElementById) 
flash=setInterval("change()",speed) 
} 
starteffect() 
</script> 
</b> 

答えて

0

変更

document.write('<span id="highlight">' + text + '</span>') 

document.write('<a id="highlight" style="font-size: 50px;" href="website.com">' + text + '</a>') 
+0

に、あなたはまた、埋め込みコードを作成し、漫画サンセリフに –

+0

GoはHTMLとJavascriptを学ぶのフォントを変更することができます。 http://www.w3schools.com/js/default.asp、http://www.w3schools.com/html/default.asp –

関連する問題