您在這裡
使用者登入
最新文章
回應
3 年 5 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
Re: 在 block 裡加入 javascript code
比如是什麼特效?您的放法是怎麼放置的?
照字面看來無法看出所以然…
人生多一份感恩,就多一份美化 (靜思語錄)
Re: 在 block 裡加入 javascript code
訊息跑馬燈的特效~
有將 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('')
}
}
}
Re: 在 block 裡加入 javascript code
你有將輸入格式切到"Full HTML"嘛?
我將你的js貼到區塊~跑是正常的~~
人事的艱難與琢磨,就是一種考驗 (靜思語錄)
Re: 在 block 裡加入 javascript code
有了~
找到問題了!
原來是"HTML 過濾器"選項的關係^^
感謝您!~ ^^