<div class="htmlarea"> <textarea id="runcode80758"> <title>드래그 페이지 넘김 효과 JavaScript 특수 효과-데모(http://www.jb51.net)</title> <style type="text/css"> html,body{ width:100%; height:100%; border:0px; margin:0px; overflow:hidden; } #menu{ width:1000px; height:500px; overflow:hidden; background:lightblue; } .page{ position:absolute; width:300px; height:400px; left:350px; top:50px; background:#FFF; border:1px solid #999; } ul{ list-style:none; height:320px; margin:20px; padding:0px; background:#EEE; } li{ font-size:12px; height:20px; line-height:20px; border-bottom:1px dashed #999; } li span{ float:right; } li a{ color:#000; text-decoration:none; } li a:hover{ text-decoration:underline; } .tip{ display:block; height:20px; margin:0px 20px; line-height:20px; text-align:center; font-size:12px; background:#999; } </style> <div id="menu"> <div class="page"> <ul> <li> <span></span>09-11-25<a href="/" target="_blank"></a>RSA 파일 암호화 원리 및 코드 구현</li> <li> <span></span>09-11-25<a href="http://www.jb51.net" target="_blank"></a>C# 소프트웨어 백도어 프로그램 코드</li> <li style="background:coral;"> <span></span>09-11-25<a href="/" target="_blank"></a>프로젝트 관리 소프트웨어 PHP 버전</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>손잡고</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>첫사랑 소년의 집</li> </ul> </div> <div class="page"> <ul> <li> <span></span>09-11-25<a href="/" target="_blank"></a>아! 멈출 수 없는 사랑</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>검색엔진통합검색시스템</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>유혹의 비</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>2000년 과거</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>그린 테러리스트</li> </ul> </div> <div class="page"> <ul> <li> <span></span>09-11-25<a href="/" target="_blank"></a>시간이 점점 사라지고 있습니다</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>고요한 온천</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>하늘이 피어난다</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>아파이가 강아지를 키웠어요</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>참 또는 거짓</li> <li> <span></span>09-11-25<a href="/" target="_blank"></a>남대만 차이공산당</li> </ul> </div> </div> </textarea> <br><input onclick="runEx('runcode80758')" type="button" value="运行代码"><input onclick="doCopy('runcode80758')" type="button" value="复制代码"> <input onclick="doSave(runcode80758)" type="button" value="保存代码"> <a href="http://www.jb51.net/article/23421.htm" title="查看具体详情" target="_blank">[Ctrl A 모두 선택 참고: </a>외부 J를 도입해야 하는 경우 실행하려면 새로 고쳐야 합니다 </div>]<script type="text/javascript"> function id(obj){ return document.getElementById(obj); } var page; var mx; var md=false; var sh=0; var en=false; window.onload=function(){ page=id("menu").getElementsByTagName("div"); if(page.length>0){ page[0].style.zIndex=2; } for(i=0;i<page.length;i++){ page[i].innerHTML+="<span class=\"tip\">"+(i+1)+"/"+page.length+"页 拖拽翻页"; page[i].id="page"+i; page[i].i=i; page[i].onmousedown=function(e){ if(!en){ if(!e){e=e||window.event;} ex=e.pageX?e.pageX:e.x; mx=350-ex; this.style.cursor="move"; md=true; if(document.all){ this.setCapture(); }else{ window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP); } } } page[i].onmousemove=function(e){ if(md){ en=true; if(!e){e=e||window.event;} ex=e.pageX?e.pageX:e.x; this.style.left=ex+mx+"px"; if(this.offsetLeft<350){ var cu=(this.i==0)?page.length-1:this.i-1; page[sh].style.zIndex=0; page[cu].style.zIndex=1; this.style.zIndex=2; sh=cu; } if(this.offsetLeft>350){ var cu=(this.i==page.length-1)?0:this.i+1; page[sh].style.zIndex=0; page[cu].style.zIndex=1; this.style.zIndex=2; sh=cu; } } } page[i].onmouseup=function(){ this.style.cursor="default"; md=false; if(this.offsetLeft==350){ en=false; } if(document.all){ this.releaseCapture(); }else{ window.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP); } flyout(this); } } } function flyout(obj){ if(obj.offsetLeft < 350){ if( (obj.offsetLeft - 10) > 50 ){ obj.style.left=obj.offsetLeft - 10 + "px"; window.setTimeout("flyout(id('"+obj.id+"'));",0); }else{ obj.style.left= 50 +"px"; obj.style.zIndex=0; flyin(id(obj.id)); } } if(obj.offsetLeft > 350){ if((obj.offsetLeft + 10) < 650){ obj.style.left=obj.offsetLeft + 10 + "px"; window.setTimeout("flyout(id('"+obj.id+"'));",0); }else{ obj.style.left= 650 + "px"; obj.style.zIndex=0; flyin(id(obj.id)); } } } function flyin(obj){ if(obj.offsetLeft<350){ if((obj.offsetLeft + 10) < 350){ obj.style.left=obj.offsetLeft + 10+"px"; window.setTimeout("flyin(id('"+obj.id+"'));",0); }else{ obj.style.left= 350 +"px"; en=false; } } if(obj.offsetLeft>350){ if((obj.offsetLeft - 10) > 350){ obj.style.left=obj.offsetLeft - 10 +"px"; window.setTimeout("flyin(id('"+obj.id+"'));",0); }else{ obj.style.left=350+"px"; en=false; } } } </script>