본문 바로가기

javascript

눈 내리는 뉴스 박스

<!--3. BODY 부분에 아래의 스크립트를 복사해 넣으세요-->


<STYLE>
body{
overflow-x:hidden;
overflow-y:scroll;
}

</STYLE>

<SCRIPT>

// 메세지를 계속 추가할 수 있습니다
var message=new Array()
message[0]="메리 크리스마스"
message[1]="좀 일찍 하죠?"
message[2]="하지만 뭐.. 올 크리스마스를 위하여"

// 메세지별 하이퍼링크
var messageurl=new Array()
messageurl[0]="http://www.bizs.wo.ro"
messageurl[1]="http://www.bizs.wo.ro"
messageurl[2]="http://www.bizs.wo.ro"

// 링크 타겟

var messagetarget=new Array()
messagetarget[0]="_blank"
messagetarget[1]="_blank"
messagetarget[2]="_blank"

// 메세지 글자 색
var textcolor="orange"

// 메세지 그림자 색
var textshadowcolor="blue"

// speed 1: lower means faster
var pause=20

// speed 2: higher means faster
var step=2

// 글자의 크기
var fntsize=14

// 글자모양
var fntfamily="굴림"

// 글자위 두께 1= 두껍게, 0=보통
var fntweight=0

// 배경색
var backgroundcolor="000000"

// 테두리 두께
var borderwidth=2

// 스크롤러의 윗쪽 여백
var topdistance=220

//**********************************************************************************

var snowani=new Array("snowani0.gif", "snowani1.gif", "snowani2.gif")
var snowani0=new Image()
snowani0.src="snowani0.gif"
var snowani1=new Image()
snowani1.src="snowani1.gif"
var snowani2=new Image()
snowani2.src="snowani2.gif"
var cellpad=10
var scrollerwidth=220
var scrollerheight=30
var shadowsize=1
var scrollerleft
var scrollertop
var screenwidth
var clipleft,clipright,cliptop,clipbottom
var i_message=0
var i_snowani=0
var timer
var textwidth
var textcontent=""
var textshadowcontent=""
var bgcontent=""
if (fntweight==1) {fntweight="bold"}
else {fntweight="normald"}
topdistance=topdistance+cellpad

function doanimation() {
        if (i_snowani>=3) {i_snowani=0}
        if (document.all) {
                bgcontent="<img src='"+snowani[i_snowani]+"'>"
                bgscroller.innerHTML=bgcontent
        }
        if (document.layers) {
                document.bgscroller.document.snowpic.src=snowani[i_snowani]
        }
        i_snowani++
        var animation_timer=setTimeout("doanimation()",200)
}

function init() {
        doanimation()
        gettextcontent()
        if (document.all) {gettextshadowcontent()}
    if (document.all) {
                screenwidth=document.body.clientWidth
                scrollertop=document.body.scrollTop
                scrollerleft=screenwidth/2-scrollerwidth/2
                text.innerHTML=textcontent
                textshadow.innerHTML=textshadowcontent
                textwidth=text.offsetWidth
                document.all.bgscroller.style.posTop=scrollertop-cellpad+topdistance
        document.all.bgscroller.style.posLeft=scrollerleft-cellpad
                document.all.text.style.posTop=scrollertop+topdistance
        document.all.text.style.posLeft=scrollerleft+scrollerwidth
                document.all.textshadow.style.posTop=scrollertop+shadowsize+topdistance
        document.all.textshadow.style.posLeft=scrollerleft+scrollerwidth+shadowsize
                clipleft=0
                clipright=0
                cliptop=0
                clipbottom=scrollerheight
                document.all.text.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
                document.all.textshadow.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
        scrolltext()
    }
        if (document.layers) {
                screenwidth=window.innerWidth
                scrollertop=pageYOffset
                scrollerleft=screenwidth/2-scrollerwidth/2
                document.text.document.write(textcontent)
                document.text.document.close()

                textwidth=document.text.document.width
                
                document.bgscroller.top=scrollertop-cellpad+topdistance
        document.bgscroller.left=scrollerleft-cellpad
                document.text.top=scrollertop+topdistance
                document.text.left=scrollerleft+scrollerwidth
                
                document.text.clip.left=0
                document.text.clip.right=0
                document.text.clip.top=0
                document.text.clip.bottom=scrollerheight

        scrolltext()
    }
}

function scrolltext() {
    if (document.all) {
                if (document.all.text.style.posLeft>=scrollerleft-textwidth) {
                        document.all.text.style.posLeft-=step
                        document.all.textshadow.style.posLeft=document.all.text.style.posLeft+shadowsize
                        clipright+=step
                        if (clipright>scrollerwidth) {
                                clipleft+=step
                        }
                        scrollertop=document.body.scrollTop
                        document.all.text.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
                        document.all.textshadow.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
                        document.all.bgscroller.style.posTop=scrollertop-cellpad+topdistance
                        document.all.text.style.posTop=scrollertop+topdistance
                        document.all.textshadow.style.posTop=scrollertop+shadowsize+topdistance
                        var timer=setTimeout("scrolltext()",pause)
                }
                else {
                        changetext()
                }
        }
   if (document.layers) {
                if (document.text.left>=scrollerleft-textwidth) {
                        document.text.left-=step
                        document.text.clip.right+=step
                        if (document.text.clip.right>scrollerwidth) {
                                document.text.clip.left+=step
                        }
                        scrollertop=pageYOffset
                        document.bgscroller.top=scrollertop-cellpad+topdistance
                        document.text.top=scrollertop+topdistance
                        var timer=setTimeout("scrolltext()",pause)
                }
                else {
                        changetext()
                }
        }
}

function changetext() {
    i_message++
        if (i_message>message.length-1) {i_message=0}
        gettextcontent()
        if (document.all) {gettextshadowcontent()}
        if (document.all) {
                text.innerHTML=textcontent
                textshadow.innerHTML=textshadowcontent
                textwidth=text.offsetWidth
                
        document.all.text.style.posLeft=scrollerleft+scrollerwidth
                document.all.textshadow.style.posLeft=scrollerleft+scrollerwidth+shadowsize
                clipleft=0
                clipright=0
                document.all.text.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
document.all.textshadow.style.clip ="rect("+cliptop+" "+clipright+" "+clipbottom+" "+clipleft+")"
                
        scrolltext()
        }

        if (document.layers) {
                   document.text.document.write(textcontent)
                document.text.document.close()
                textwidth=document.text.document.width

                document.text.left=scrollerleft+scrollerwidth
                document.text.clip.left=0
                document.text.clip.right=0
                
        scrolltext()
        }
}

function gettextcontent() {
        textcontent="<span style='position:relative;font-size:"+fntsize+"pt;font-family:"+fntfamily+";font-weight:"+fntweight+"'>"
        textcontent+="<a href="+messageurl[i_message]+" target="+messagetarget[i_message]+">"
        textcontent+="<nobr><font color="+textcolor+">"+message[i_message]+"</font></nobr></a></span>"
        
}

function gettextshadowcontent() {
        textshadowcontent="<span style='position:relative;font-size:"+fntsize+"pt;font-family:"+fntfamily+";font-weight:"+fntweight+"'>"
        textshadowcontent+="<a href="+messageurl[i_message]+" target="+messagetarget[i_message]+">"
        textshadowcontent+="<nobr><font color="+textshadowcolor+">"+message[i_message]+"</font></nobr></a></span>"
}


window.onresize=init;
window.onload=init;
</script>

<DIV ID="bgscroller" style="position:absolute;"><img name="snowpic" src="snowani0.gif"></DIV>
<DIV ID="textshadow" style="position:absolute;"></DIV>
<DIV ID="text" style="position:absolute;"></DIV>