참조사이트 :
뭐 참조랄것도 없이 거의 다 배꼈지만..
<code>
var x,y,w,h;
var flag=false;
var obj;
function table_resize_start(e,target_id){
flag=true;
obj=document.getElementById(target_id);
if(document.all){
x=e.clientX;
y=e.clientY;
w = obj.style.pixelWidth;
h = obj.style.pixelHeight;
}else if(document.getElementById){
x=e.pageX;
y=e.pageY;
w = parseInt((obj.style.width).replace("px",""),10);
h = parseInt((obj.style.height).replace("px",""),10);
}
obj.style.cursor= "n-resize";
}
function table_resize(e){
if(flag){
if(document.all){
xx=e.clientX-x
yy=e.clientY-y
obj.style.pixelWidth=w + xx;
obj.style.pixelHeight=h +yy;
}
else if(document.getElementById){
xx=e.pageX-x
yy=e.pageY-y
objWidth = w+xx;
objHeight = h+yy;
obj.style.width=objWidth+"px"
obj.style.height=objHeight+"px"
}
}
}
function table_resize_end(){
flag=false;
obj.style.cursor= "";
}
</code>
'개인적인 프로그램 > 자바스크립트' 카테고리의 다른 글
ajax와 response.setContentType("text/xml;charset=utf-8") (0) | 2011.10.26 |
---|---|
select 에서 순서 재정렬 하기 (0) | 2011.10.26 |
네이버 블로그에 사용돼는 태그 관련 스크립트 (0) | 2011.10.26 |
현재 내가 쓰려는 웹에디터.. (0) | 2011.10.26 |
html editor 관련 designMode 에 대해서 (0) | 2011.10.26 |