아래 링크에 순서가 적혀있음
'기타소스자료' 카테고리의 다른 글
[스크랩] 움직이는 이모티콘 (0) | 2010.10.13 |
---|---|
[자바스크립트]소스 다운받고 좋은곳 (0) | 2009.05.27 |
[자바스크립트]좌우버튼있고 슬라이딩 링크 되는 소스 (0) | 2009.05.27 |
아래 링크에 순서가 적혀있음
[스크랩] 움직이는 이모티콘 (0) | 2010.10.13 |
---|---|
[자바스크립트]소스 다운받고 좋은곳 (0) | 2009.05.27 |
[자바스크립트]좌우버튼있고 슬라이딩 링크 되는 소스 (0) | 2009.05.27 |
[스크랩]윈도우7 스타터 에디션 바탕화면 변경하는 방법 (0) | 2013.05.31 |
---|---|
[자바스크립트]소스 다운받고 좋은곳 (0) | 2009.05.27 |
[자바스크립트]좌우버튼있고 슬라이딩 링크 되는 소스 (0) | 2009.05.27 |
블루비 (웹개발자들의공간)
http://www.blueb.co.kr/bbs.php?table=JS_01&category=슬라이드쇼
[스크랩]윈도우7 스타터 에디션 바탕화면 변경하는 방법 (0) | 2013.05.31 |
---|---|
[스크랩] 움직이는 이모티콘 (0) | 2010.10.13 |
[자바스크립트]좌우버튼있고 슬라이딩 링크 되는 소스 (0) | 2009.05.27 |
원하는 부분에 소스를 넣으면 아래와 같이 이미지와 버튼이 바로 보이며 링크 설정 가능함
출처:지식인
http://kin.naver.com/detail/detail.php?d1id=1&dir_id=109&eid=spOIOtrfErw65yq//WJJJ8Tz9trsdAXh
<script type="text/javascript">
var sliderwidth="500px" //스크롤 가로 사이즈
var sliderheight="67px" //스크롤 세로 사이즈
var slidespeed="1"
slidebgcolor="#ffffff" //스크롤 배경 색상
var leftarrowimage = "http://www.blueb.co.kr/SRC/javascript/image6/arrow_l.gif"
var rightarrowimage = "http://www.blueb.co.kr/SRC/javascript/image6/arrow_r.gif"
var leftrightslide=new Array()
var finalslide=''
leftrightslide[0]='<A HREF="http://www.naver.com" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_01.jpg border=0></A>'
leftrightslide[1]='<A HREF="http://www.daum.net" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_03.jpg border=0></A>'
leftrightslide[2]='<A HREF="http://www.empas.co.kr" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_04.jpg border=0></A>'
leftrightslide[3]='<A HREF="http://www.dreamwiz.com" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_06.jpg border=0></A>'
leftrightslide[4]='<A HREF="http://www.freechal.co.kr" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_08.jpg border=0></A>'
leftrightslide[5]='<A HREF="http://www.netian.com" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_09.jpg border=0></A>'
leftrightslide[6]='<A HREF="http://www.paran.co.kr" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_11.jpg border=0></A>'
leftrightslide[7]='<A HREF="http://www.google.co.kr" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_12.jpg border=0></A>'
leftrightslide[8]='<A HREF="http://www.yahoo.co.kr" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_13.jpg border=0></A>'
leftrightslide[9]='<A HREF="http://www.nate.com" target=_self><img src=http://www.blueb.co.kr/SRC/flash/image/thum_15.jpg border=0></A>'
var imagegap=""
var slideshowgap=0
var copyspeed=slidespeed
leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
var iedom=document.all||document.getElementById
if (iedom)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
var actualwidth=''
var cross_slide, ns_slide
var righttime,lefttime
function fillup()
{
if (iedom)
{
cross_slide=document.getElementById? document.getElementById("test2") : document.all.test2
cross_slide2=document.getElementById? document.getElementById("test3") : document.all.test3
cross_slide.innerHTML=cross_slide2.innerHTML=leftrightslide
actualwidth=document.all? cross_slide.offsetWidth : document.getElementById("temp").offsetWidth
cross_slide2.style.left=actualwidth+slideshowgap+"px"
}
else if (document.layers)
{
ns_slide=document.ns_slidemenu.document.ns_slidemenuorange
ns_slide2=document.ns_slidemenu.document.ns_slidemenu3
ns_slide.document.write(leftrightslide)
ns_slide.document.close()
actualwidth=ns_slide.document.width
ns_slide2.left=actualwidth+slideshowgap
ns_slide2.document.write(leftrightslide)
ns_slide2.document.close()
}
lefttime=setInterval("slideleft()",30)
}
window.onload=fillup
function slideleft()
{
if (iedom)
{
if (parseInt(cross_slide.style.left)>(actualwidth*(-1)+8))
cross_slide.style.left=parseInt(cross_slide.style.left)-copyspeed+"px"
else
cross_slide.style.left=parseInt(cross_slide2.style.left)+actualwidth+slideshowgap+"px"
if (parseInt(cross_slide2.style.left)>(actualwidth*(-1)+8))
cross_slide2.style.left=parseInt(cross_slide2.style.left)-copyspeed+"px"
else
cross_slide2.style.left=parseInt(cross_slide.style.left)+actualwidth+slideshowgap+"px"
}
else if (document.layers)
{
if (ns_slide.left>(actualwidth*(-1)+8))
ns_slide.left-=copyspeed
else
ns_slide.left=ns_slide2.left+actualwidth+slideshowgap
if (ns_slide2.left>(actualwidth*(-1)+8))
ns_slide2.left-=copyspeed
else
ns_slide2.left=ns_slide.left+actualwidth+slideshowgap
}
}
function slideright()
{
if (iedom)
{
if (parseInt(cross_slide.style.left)<(actualwidth+8))
cross_slide.style.left=parseInt(cross_slide.style.left)+copyspeed+"px"
else
cross_slide.style.left=parseInt(cross_slide2.style.left)+actualwidth*(-1)+slideshowgap+"px"
if (parseInt(cross_slide2.style.left)<(actualwidth+8))
cross_slide2.style.left=parseInt(cross_slide2.style.left)+copyspeed+"px"
else
cross_slide2.style.left=parseInt(cross_slide.style.left)+actualwidth*(-1)+slideshowgap+"px"
}
else if (document.layers)
{
if (ns_slide.left>(actualwidth*(-1)+8))
ns_slide.left-=copyspeed
else
ns_slide.left=ns_slide2.left+actualwidth+slideshowgap
if (ns_slide2.left>(actualwidth*(-1)+8))
ns_slide2.left-=copyspeed
else
ns_slide2.left=ns_slide.left+actualwidth+slideshowgap
}
}
function right()
{
if(lefttime)
{
clearInterval(lefttime)
clearInterval(righttime)
righttime=setInterval("slideright()",30)
}
}
function left()
{
if(righttime)
{
clearInterval(lefttime)
clearInterval(righttime)
lefttime=setInterval("slideleft()",30)
}
}
document.write('<table width='+sliderwidth+' border="0" cellspacing="0" cellpadding="0">');
document.write('<tr><td align=center valign=middle width=20><img src='+leftarrowimage+' onMouseover="left(); copyspeed=2" onMouseout="copyspeed=1" style="cursor:hand"></td>')
if (iedom||document.layers)
{
with (document)
{
document.write('<td>')
if (iedom)
{
write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
write('<div style="position:absolute;width:'+sliderwidth+';height:'+sliderheight+';background-color:'+slidebgcolor+'" onMouseover="copyspeed=0" onMouseout="copyspeed=1">')
write('<div id="test2" style="position:absolute;left:0px;top:0px"></div>')
write('<div id="test3" style="position:absolute;left:-1000px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers)
{
write('<ilayer width='+sliderwidth+' height='+sliderheight+' name="ns_slidemenu" bgColor='+slidebgcolor+'>')
write('<layer name="ns_slidemenuorange" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('<layer name="ns_slidemenu3" left=0 top=0 onMouseover="copyspeed=0" onMouseout="copyspeed=slidespeed"></layer>')
write('</ilayer>')
}
document.write('</td>')
}
}
document.write('<td width="20" align=center valign=middle><img src='+rightarrowimage+' onMouseover="right();copyspeed=2" onMouseout="copyspeed=1" style="cursor:hand"></td></tr></table>')
</script>
[스크랩]윈도우7 스타터 에디션 바탕화면 변경하는 방법 (0) | 2013.05.31 |
---|---|
[스크랩] 움직이는 이모티콘 (0) | 2010.10.13 |
[자바스크립트]소스 다운받고 좋은곳 (0) | 2009.05.27 |