ȸ¿ø°¡ÀԡžÆÀ̵ð/ºñ¹øã±â
ȨÀ¸·Î


Á¿¡¼­ ¿ì·Î °ãÃÄÁö´Â À̹ÌÁö ½½¶óÀ̵å
ȨÆäÀÌÁöȨÆäÀÌÁö 19³â Àü
¿©·¯ÀåÀÇ À̹ÌÁö¸¦ Á¼Àº °ø°£¿¡ µ¶Æ¯ÇÏ°Ô Ç¥ÇöÇÒ ¼ö Àְڳ׿ä....

<script type="text/javascript">
var trans_width='150px' //°¡·ÎÅ©±â (À̹ÌÁöÀÇ °¡·ÎÅ©±â¿¡ ¸ÂÃß¼¼¿ä)
var trans_height='50px' //³ôÀÌ
var pause=3000 //°¢ À̹ÌÁöÀÇ Áö¿¬½Ã°£ (3000=3ÃÊ)
var degree=30 //¾Ö´Ï¸ÞÀÌ¼Ç ¼Óµµ(¼ýÀÚ°¡ Ŭ¼ö·Ï »¡¶óÁý´Ï´Ù)

var slideshowcontent=new Array()
//°¢ À̹ÌÁöµéÀ» ¼³Á¤ Çϼ¼¿ä [À̹ÌÁöÁÖ¼Ò, ¸µÅ©ÁÖ¼Ò, Ÿ°Ù]
slideshowcontent[0]=["/image/banner/banner_pr/chosun.gif", "http://www.chosun.com", "_new"]
slideshowcontent[1]=["/image/banner/banner_pr/dkbnews.gif", "http://www.dkbnews.com", "_self"]
slideshowcontent[2]=["/image/banner/banner_pr/goodjava.gif", "http://goodjava.co.kr", "_blank"]
slideshowcontent[3]=["/image/banner/banner_pr/homebox.gif", "http://www.homebox-tm.com", "_blank"]
slideshowcontent[4]=["/image/banner/banner_pr/mnetv.gif", "http://www.mnetv.com", "_blank"]
slideshowcontent[5]=["/image/banner/banner_pr/taedong.gif", "http://www.taedong.net", "_blank"]
slideshowcontent[6]=["/image/banner/banner_pr/wizzl.gif", "http://www.wizzl.net", "_blank"]


var bgcolor='white' // ¹è°æ»ö

var imageholder=new Array()
for (i=0;i<slideshowcontent.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideshowcontent[i][0]
}

var ie4=document.all
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

if (ie4||dom)
document.write('<div style="position:relative;width:'+trans_width+';height:'+trans_height+';overflow:hidden"><div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+trans_width+';height:'+trans_height+';left:-'+trans_width+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+trans_width+';height:'+trans_height+';left:-'+trans_width+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>')
else if (document.layers){
document.write('<ilayer id=tickernsmain visibility=hide width='+trans_width+' height='+trans_height+' bgColor='+bgcolor+'><layer id=tickernssub width='+trans_width+' height='+trans_height+' left=0 top=0>'+'<img src="'+slideshowcontent[0][0]+'"></layer></ilayer>')
}

var curpos=trans_width*(-1)
var curcanvas="canvas0"
var curindex=0
var nextindex=1

function getslidehtml(theslide){
var slidehtml=""
if (theslide[1]!="")
slidehtml='<a href="'+theslide[1]+'" target="'+theslide[2]+'">'
slidehtml+='<img src="'+theslide[0]+'" border="0">'
if (theslide[1]!="")
slidehtml+='</a>'
return slidehtml
}

function moveslide(){
if (curpos<0){
curpos=Math.min(curpos+degree,0)
tempobj.style.left=curpos+"px"
}
else{
clearInterval(dropslide)
if (crossobj.filters)
crossobj.filters.alpha.opacity=100
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=1
nextcanvas=(curcanvas=="canvas0")? "canvas0" : "canvas1"
tempobj=ie4? eval("document.all."+nextcanvas) : document.getElementById(nextcanvas)
tempobj.innerHTML=getslidehtml(slideshowcontent[curindex])
nextindex=(nextindex<slideshowcontent.length-1)? nextindex+1 : 0
setTimeout("rotateslide()",pause)
}
}

function rotateslide(){
if (ie4||dom){
resetit(curcanvas)
crossobj=tempobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas)
crossobj.style.zIndex++
if (crossobj.filters)
document.all.canvas0.filters.alpha.opacity=document.all.canvas1.filters.alpha.opacity=20
else if (crossobj.style.MozOpacity)
document.getElementById("canvas0").style.MozOpacity=document.getElementById("canvas1").style.MozOpacity=0.2
var temp='setInterval("moveslide()",50)'
dropslide=eval(temp)
curcanvas=(curcanvas=="canvas0")? "canvas1" : "canvas0"
}
else if (document.layers){
crossobj.document.write(getslidehtml(slideshowcontent[curindex]))
crossobj.document.close()
}
curindex=(curindex<slideshowcontent.length-1)? curindex+1 : 0
}

function jumptoslide(which){
curindex=which
rotateslide()
}

function resetit(what){
curpos=parseInt(trans_width)*(-1)
var crossobj=ie4? eval("document.all."+what) : document.getElementById(what)
crossobj.style.left=curpos+"px"
}

function startit(){
crossobj=ie4? eval("document.all."+curcanvas) : dom? document.getElementById(curcanvas) : document.tickernsmain.document.tickernssub
if (ie4||dom){
crossobj.innerHTML=getslidehtml(slideshowcontent[curindex])
rotateslide()
}
else{
document.tickernsmain.visibility='show'
curindex++
setInterval("rotateslide()",pause)
}
}

if (window.addEventListener)
window.addEventListener("load", startit, false)
else if (window.attachEvent)
window.attachEvent("onload", startit)
else if (ie4||dom||document.layers)
window.onload=startit
</script>
ÃßõÃßõ : 281 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
262
ÇãÁ¢ ÀÚ¹Ù½ºÅ©¸³Æ®°­ÀÇ - 4 -
261
ÇãÁ¢ ÀÚ¹Ù½ºÅ©¸³Æ® °­ÀÇ - 3 -
260
ÇãÁ¢ ÀÚ¹Ù ½ºÅ©¸³Æ® °­ÀÇ - 2 -
259
ÇãÁ¢ ÀÚ¹Ù ½ºÅ©¸³Æ®
258
µ¿¿µ»ó°ú ÀÚ¸· °°ÀÌ º¸ÀÌ°í Ç÷¹À̾ º¸À̱â
257
ÇöÀçÆäÀÌÁö ÁÖ¼Ò ±¸Çϱâ
256
·ê¿Àºê½Ã ¹öÆ° µé¾î°¡´Â È¿°ú
255
Á¢¼Ó ÇÒ¶§¸¶´Ù ¹Ù²î´Â À½¾Ç
254
Æ˾÷â
253
Ŭ¸¯½Ã â ¸Ç µÚ·Î º¸³»±â
252
ÀÚµ¿ ½ºÅ©·Ñ ¸Þ´º (²ô±â ±â´É, ¹«ÇÑ ½ºÅ©·Ñ X)
251
TabIndex¸¦ ÀÌ¿ëÇÏ¿© ÅÇÅ° ÄÁÆ®·ÑÇϱâ
250
°æ°íâ ¾øÀÌ ºÎ¸ðâ ´Ý°í ¾Æ±ââ¿¡¼­ ¸¶¿ì½º ¿À¸¥¹öÆ° Ŭ¸¯½Ã ¾Æ±ââµµ ´Ý´Â´Ù.
249
·£´ýÀ¸·Î ÆÄÀÏ °¡Á®¿Í¼­ Àç»ýÇÏ°í, ³¡³ª¸é ´Ù¸¥ ·£´ýÆÄÀÏ ¶Ç Àç»ýÇϱâ..
248
È÷¾î´Ú ¹®¹ý È°¿ë
247
XP2ÀÎÁö üũÇÏ¿© XP2À϶§´Â Æ˾÷Çã¿ëÇ϶ó´Â ¸Þ½ÃÁö ¶Ù¿öÁÖ±â
246
¹è¿­ ½ºÅ©¸³Æ® ¸ðÀ½
245
¸ÖƼ ÆÄÀÏ´Ù¿î·Îµå ²Ç¼ö·Î ±¸ÇöÇϱâ
244
»õâ¶ç¿ì±â
243
À̹ÌÁö »çÀÌÁî¿¡ ¸Â°Ô »õâ¶ç¿ì±â
242
³»È¨ÇÇ Áñ°Üã±â/»õ·Î°íħ/¾Õ/µÚ·Î°¡±â
241
°£´ÜÇÑ Áֹεî·Ï üũ½ºÅ©¸³Æ®
240
¿øÇÏ´Â ½Ã°£¸¸Å­ °æ°íâÀ» ¶ç¿ì±â
239
³» ȨÀÌ ´Ù¸¥È¨ÀÇ ÇÁ·¹ÀÓ¿¡ °¤È÷´Â °ÍÀ» ¹æÁö
238
½ºÅ©¸³Æ®¸¦ Á¤¸®ÇÏÀÚ - jsÆÄÀÏ ¸¸µé±â
Á¿¡¼­ ¿ì·Î °ãÃÄÁö´Â À̹ÌÁö ½½¶óÀ̵å
236
copyright ³¯Â¥¸¦ ÀÚµ¿À¸·Î ¾÷µ¥ÀÌÆ®
235
¸ðÀÚÀÌÅ© ½½¶óÀ̵å
234
±×¸²¿¡¸¸ ¿À¸¥ÂÊ ¸¶¿ì½º ¸·±â
233
ÁÖ¼Òâ¿¡ ¾ÆÀÌÄÜ(ÆĺñÄÜ)À» ³Ö±â
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.