您在這裡

在 block 中加入 javascript code

imtodtod's 的頭像
imtodtod 在 2010-07-05 (週一) 16:57 發表

從網路上找到喜歡的 javascript 特效

想要將它放進 block 中

為什麼沒辦法顯示呢?

比如是什麼特效?您的放法是怎麼放置的?
照字面看來無法看出所以然…

人生多一份感恩,就多一份美化 (靜思語錄)

人人把心中的愛發揮出來,就能凝聚善的福業,形成善的循環。 (靜思語錄)

訊息跑馬燈的特效~

有將 code 放入 block 裡

可是沒辦法顯示!

不能直接將 code 放進 block 裡嗎?

從網路上找的 script 特效:

var marqueewidth="200px"
var marqueeheight="150px"
var marqueespeed=2
var pauseit=1

var marqueecontent='滑鼠移到跑馬燈上,會停止喔!想要連結的話,請單擊這裡Visit our partner JavaScript Kit for JavaScript tutorials.'

////NO NEED TO EDIT BELOW THIS LINE////////////

marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee

function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
lefttime=setInterval("scrollmarquee()",20)
}
window.onload=populate

function scrollmarquee(){

if (iedom){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('

')
write('
')
write('

')
}
else if (document.layers){
write('')
write('')
write('')
}
}
}

================================
信心、毅力、勇氣三者具備,則天下沒有做不成的事。(靜思語)
================================

你有將輸入格式切到"Full HTML"嘛?
我將你的js貼到區塊~跑是正常的~~
http://drupaltaiwan.org/files/succeed.PNG
人事的艱難與琢磨,就是一種考驗 (靜思語錄)

人人把心中的愛發揮出來,就能凝聚善的福業,形成善的循環。 (靜思語錄)

有了~

找到問題了!

原來是"HTML 過濾器"選項的關係^^

感謝您!~ ^^

================================
信心、毅力、勇氣三者具備,則天下沒有做不成的事。(靜思語)
================================