레이어 스부적스부적 이동 스크립트

· 17년 전 · 1569
<script> /* // // 레이어 스부적스부적 이동 스크립트. // // by hanulis(hanulis@gmail.com). 2007. // // usage: mino.layer.moveSmooth(obj,x,y); // // 설명: obj를 x,y 위치로 스부적 이동시킴. obj의 style중 position:absolute가 추가되어있어야 합니다. // // 예제: <div id="test" style="position:absolute">aaa</div> // <script>mino.layer.moveSmooth(document.getElementById("test"),200,400); </ script> // // 보너스: x혹은 y축만 움직이고 싶을때, 움직이지 않을축을 null로 지정합니다. // // 예제: <script>mino.layer.moveSmooth(document.getElementById("test"),null,400); </ script> // */ var mino={} var _mino_layer_smooth_obj=null; var _mino_layer_smooth_doing=false; mino.layer={ xy:function(obj) { if(document.getBoxObjectFor) { //firefox try { var tempXY=document.getBoxObjectFor(obj); } catch(e) {return [0,0,obj.offsetWidth,obj.offsetHeight]} return [tempXY.x,tempXY.y,obj.offsetWidth,obj.offsetHeight]; } else if(obj.getBoundingClientRect) { //internet Explorer var tempXY=obj.getBoundingClientRect(); return [(tempXY.left+document.body.scrollLeft),(tempXY.top+document.body.scrollTop),obj.offsetWidth,obj.offsetHeight]; } else return false; }, moveSmooth:function(obj,x,y) { if(!_mino_layer_smooth_obj) _mino_layer_smooth_obj=obj; if(arguments[3]==undefined && _mino_layer_smooth_doing) { return; } else _mino_layer_smooth_doing=1; var loc=mino.layer.xy(_mino_layer_smooth_obj); if(x!=null) { if(Math.abs(Math.abs(loc[0])-Math.abs(x))<10) { obj.style.left=x; var xc=1; } else { obj.style.left=parseInt(loc[0]+(x-loc[0])/3); } } else var xc=1; if(y!=null) { if(Math.abs(Math.abs(loc[1])-Math.abs(y))<10) { obj.style.top=y; var yc=1; } else { obj.style.top=parseInt(loc[1]+(y-loc[1])/3); } } else var yc=1; if(xc && yc) { _mino_layer_smooth_doing=0; _mino_layer_smooth_obj=null; return; } setTimeout('mino.layer.moveSmooth(_mino_layer_smooth_obj,'+x+','+y+',"s")',10); } } </script> <div id="k" style="background-color:#eeffe0;position:absolute;width:200;height:200;border:1px solid #000000"></div> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <input type=button value="move(0,0)" onclick="mino.layer.moveSmooth(document.getElementById('k'),0,0)"> <input type=button value="move(-200,-200)" onclick="mino.layer.moveSmooth(document.getElementById('k'),-200,-200)"> <input type=button value="move(400,400)" onclick="mino.layer.moveSmooth(document.getElementById('k'),400,400)"> <input type=button value="move(300,300)" onclick="mino.layer.moveSmooth(document.getElementById('k'),300,300)"> <input type=button value="move(500,null)" onclick="mino.layer.moveSmooth(document.getElementById('k'),500,null)"> <input type=button value="move(null,500)" onclick="mino.layer.moveSmooth(document.getElementById('k'),null,500)">
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 1,715
17년 전 조회 2,525
17년 전 조회 2,267
17년 전 조회 2,558
17년 전 조회 3,116
17년 전 조회 3,580
17년 전 조회 2,658
17년 전 조회 1,925
17년 전 조회 3,510
17년 전 조회 3,356
17년 전 조회 3,328
17년 전 조회 4,211
17년 전 조회 2,847
17년 전 조회 2,709
17년 전 조회 2,964
17년 전 조회 3,198
17년 전 조회 2,910
17년 전 조회 1,761
17년 전 조회 2,154
17년 전 조회 1,752
17년 전 조회 2,212
17년 전 조회 2,838
17년 전 조회 8,994
17년 전 조회 3,437
17년 전 조회 4,503
17년 전 조회 2,266
17년 전 조회 3,938
17년 전 조회 1,831
17년 전 조회 1,659
17년 전 조회 2,596
17년 전 조회 1,581
17년 전 조회 1,893
17년 전 조회 1,748
17년 전 조회 2,818
17년 전 조회 1,769
17년 전 조회 1,360
17년 전 조회 1,516
17년 전 조회 3,406
17년 전 조회 2,433
17년 전 조회 2,230
17년 전 조회 1,491
17년 전 조회 2,714
17년 전 조회 1,446
17년 전 조회 1,410
17년 전 조회 1,661
17년 전 조회 3,020
17년 전 조회 2,680
17년 전 조회 2,732
17년 전 조회 1,461
17년 전 조회 1,570
17년 전 조회 3,536
17년 전 조회 3,107
17년 전 조회 4,363
17년 전 조회 2,538
17년 전 조회 2,639
17년 전 조회 1,686
17년 전 조회 2,796
17년 전 조회 2,474
17년 전 조회 3,250
17년 전 조회 2,749
17년 전 조회 1,897
17년 전 조회 2,686
17년 전 조회 1,831
17년 전 조회 1,427
17년 전 조회 2,498
17년 전 조회 3,134
17년 전 조회 4,339
17년 전 조회 3,404
17년 전 조회 1,672
17년 전 조회 1,894
17년 전 조회 2,493
17년 전 조회 1,806
17년 전 조회 1,982
17년 전 조회 2,948
17년 전 조회 2,402
17년 전 조회 2,035
17년 전 조회 4,445
17년 전 조회 3,288
17년 전 조회 1,682
17년 전 조회 3,810
17년 전 조회 3,044
17년 전 조회 2,306
17년 전 조회 1,543
17년 전 조회 2,575
17년 전 조회 2,310
17년 전 조회 2,227
17년 전 조회 2,165
17년 전 조회 1,420
17년 전 조회 2,119
17년 전 조회 3,149
17년 전 조회 1,670
17년 전 조회 1,920
17년 전 조회 1,587
17년 전 조회 1,830
17년 전 조회 1,806
17년 전 조회 1,711
17년 전 조회 2,792
17년 전 조회 2,568
17년 전 조회 2,364
17년 전 조회 1,649