묻고답하기

뉴스티커 스크롤 소스인데요...링크를 없앨려구 하는데 단순히 소스상에서 링크부분을 삭제해버리면 undefined페이지로 링크가 걸리네요..아예 삭제할수 있는 방법은 없을까요?


<html>
<head>
<title>BLUEB</title>
<style type="text/css">
#divNewsCont {position:absolute; left:100px; top:200px; width:300px; height:80px; clip:rect(0px 300px 80px 0px); visibility:hidden; overflow:hidden;}
#divNews     {position:absolute;}
</style>
<script language="JavaScript" type="text/javascript">

function lib_bwcheck(){ //Browsercheck (needed)
    this.ver=navigator.appVersion
    this.agent=navigator.userAgent
    this.dom=document.getElementById?1:0
    this.opera5=this.agent.indexOf("Opera 5")>-1
    this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0;
    this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
    this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
    this.ie=this.ie4||this.ie5||this.ie6
    this.mac=this.agent.indexOf("Mac")>-1
    this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;
    this.ns4=(document.layers && !this.dom)?1:0;
    this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5)
    return this
}
var bw=new lib_bwcheck()


//How do you want the script to work?
//0 = Fade in - Fade out
//1 = Slide in - Fade out
//2 = Random
nWorks = 1

//If you use the slide set these variables:
nSlidespeed = 5 //in px
nNewsheight = 80 //This is how long down it should start the slide.

nBetweendelay = 1000 //전환시간
nFont = '굴림,동움' //폰트설정
nFontsize = 12 //폰트크기
nFadespeed = 100 //페이드인시간


nColor=new Array('#FFFFFF', '#EEEEEE','#CCCCCC','#999999','#666666','#333333','#000000')
nNews=new Array()

// 이곳에 텍스트와 링크를 입력하세요..
nNews[0]=new Array()
nNews[0]["text"]="안녕하세요 블루비에 오신것을 환영합니다.!"
nNews[0]["link"]="/"

nNews[1]=new Array()
nNews[1]["text"]="블루비는 개발자들의 공간입니다. 디자이너, 프로그래머 모두 환영합니다.."
nNews[1]["link"]="/"

nNews[2]=new Array()
nNews[2]["text"]="종합검색 메뉴를 활용하시면 쉽게 원하는 자료를 찾을 수 있습니다.!"
nNews[2]["link"]="http://www.blueb.co.kr"

nNews[3]=new Array()
nNews[3]["text"]="대한민국 최대 개발자포털사이트 www.blueb.co.kr"
nNews[3]["link"]="http://www.blueb.co.kr"

function makeNewsObj(obj,nest,font,size,color,news,fadespeed,betweendelay,slidespeed,works,newsheight){
    nest=(!nest) ? "":'document.'+nest+'.'
       this.css=bw.dom? document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+"document.layers." +obj):0;    
       this.writeref=bw.dom? document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+"document.layers." +obj+".document"):0;
    if(font){this.color=new Array(); this.color=eval(color); this.news=new Array(); this.news=eval(news)
        this.font=font; this.size=size; this.speed=fadespeed; this.delay=betweendelay; this.newsheight=newsheight;
        this.fadeIn=b_fadeIn;this.fadeOut=b_fadeOut; this.newsWrite=b_newsWrite; this.y=1
        this.slideIn=b_slideIn; this.moveIt=b_moveIt; this.slideSpeed=slidespeed; this.works=works
        if(bw.dom || bw.ie4){this.css.fontFamily=this.font; this.css.fontSize=this.size; this.css.color=this.color[0]}
    }
    this.obj = obj + "Object";     eval(this.obj + "=this"); return this
}

var px = bw.ns4||window.opera?"":"px";

function b_moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x+px; this.css.top=this.y+px;}

function b_newsWrite(num,i){
    if (bw.ns4){
        this.writeref.write("<a href=""+this.news[num]['link']+"" target="myTarget" style="text-decoration:none; font-size:"+this.size+"px">"
            +"<font face=""+this.font+"" color=""+this.color[i]+"">"+this.news[num]['text']+"</font></a>")
        this.writeref.close()
    }else this.writeref.innerHTML = '<a id="'+this.obj+'link' +'" target="myTarget"  style="text-decoration:none; font-size:'+this.size+'px; color:'+this.color[i]+'" href="'+this.news[num]['link']+'">'+this.news[num]['text']+'</a>'
}

function b_slideIn(num,i){
    if (this.y>0){
        if (i==0){this.moveIt(0,this.newsheight); this.newsWrite(num,this.color.length-1)}
        this.moveIt(this.x,this.y-this.slideSpeed)
        i ++
        setTimeout(this.obj+".slideIn("+num+","+i+");",50)
    }else setTimeout(this.obj+".fadeOut("+num+","+(this.color.length-1)+")",this.delay)
}

function b_fadeIn(num,i){
    if (i<this.color.length){
        if (i==0 || bw.ns4) this.newsWrite(num,i)
        else{
            obj = bw.ie4?eval(this.obj+"link"):document.getElementById(this.obj+"link")
            obj.style.color = this.color[i]
        }
        i ++
        setTimeout(this.obj+".fadeIn("+num+","+i+")",this.speed)
    }else setTimeout(this.obj+".fadeOut("+num+","+(this.color.length-1)+")",this.delay)
}

function b_fadeOut(num,i){
    if (i>=0){
        if (i==0 || bw.ns4) this.newsWrite(num,i)    
        else{
            obj = bw.ie4?eval(this.obj+"link"):document.getElementById(this.obj+"link")
            obj.style.color = this.color[i]
        }
        i --
        setTimeout(this.obj+".fadeOut("+num+","+i+")",this.speed)
    }else{
        num ++
        if(num==this.news.length) num=0
        works = !this.works?0:this.works==1?1:Math.round(Math.random())
        if(works==0) setTimeout(this.obj+".fadeIn("+num+",0)",500)
        else if (works==1){this.y=1; setTimeout(this.obj+".slideIn("+num+",0)",500)
        }
    }
}

function fadeInit(){
    oNews = new makeNewsObj('divNews','divNewsCont',nFont,nFontsize,"nColor","nNews",nFadespeed,nBetweendelay,nSlidespeed,nWorks,nNewsheight)
    oNewsCont = new makeNewsObj('divNewsCont')
    works = !oNews.works?0:oNews.works==1?1:Math.round(Math.random())
    if (works==0) oNews.fadeIn(0,0)
    else if (works==1) oNews.slideIn(0,0)
    oNewsCont.css.visibility = "visible"
}

if(bw.bw) onload = fadeInit
</script>
</head>

<body marginheight="0">


<div id="divNewsCont">
    <div id="divNews">
    </div>
</div>


</body>
</html>
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
마루타현 스케치북 폼 변경 문의 [2] 2016.01.25 by 마루타현
서사모 카카오톡보내기 할때 첨부이미지가 안되요~ 어디가 잘못된건지 ㅜㅜ file  
오픈퀴어 스크롤 따라다니는 퀵메뉴 배너 [3] 2015.12.14 by 오픈퀴어
세상의모든계산기 (크롬&관리자 상태일 때) MathJax 로딩이 상당히 버벅입니다. [3] 2015.12.12 by 세상의모든계산기
채리75 다중 홈페이지 뭐가 틀린건가요? [1] file 2015.12.12 by sejin7940
봉드레88 [고수님들의 도움요청 ]페이지 삽입문제 [1] 2015.12.10 by GG
GELEE 모바일 레이아웃에서 상단 로고 클릭시 홈으로 이동하지 않는 문제 [2] file 2015.12.09 by GELEE
smiling 확장변수를 **별표처리 하는법 있을까요?  
키스미베이베 메뉴 만들기좀 도와주세요 [2] file 2015.11.26 by 키스미베이베
보소보소 누리고 상세설명 이미지 오류 file  
namoo+ 모든 기능은 정상이나 회원가입 및 정보수정이 안 됩니다. ㅜ.ㅠ [9] 2015.11.08 by 빤뻔
댑펑 댓글 글자수를 mysqladmin 상에서 한 것 같습니다. [4] 2015.11.02 by 댑펑
김유석 이 API 토큰발급 어떻게 하나요? [1] 2015.10.21 by 부산민지아빠
김유석 API에 관해 질문좀..ㅠㅠ 제발..  
first 중대형 커뮤니티 운영 관련해 서버 선택 질문 드립니다 [9] 2015.09.25 by first
갤럭시탭 추천/비추천 후 팝업창 노출 문의 [1] 2015.09.22 by EISOFT
장기기억 xe에 webengine 레이아웃 수정법 [1] 2015.09.22 by 로이조52
GodBlessYou 업데이트후 http 500 내부서버오류.. [1] 2015.09.19 by 기진곰
가르송 mysql 전문가님들 안계신가요?ㅠㅠ [1] file 2015.09.18 by 기진곰
가르송 확실히 알려주시는분께 만원쏩니당 [3] 2015.09.18 by DoorWeb