A

브라우저 호환되는 여러가지 좌표값 구하기

· 17년 전 · 2345
var Q_dmnsn = {
/*
Browser: MSIE7, Firefox3, Safari3, Opera9
DTD: Quirks, Strict XHTML 1.0, Strict HTML 4.01
Update: 2008-09-02
*/
    get_lft  : function(idntty) { return parseInt(document.getElementById(idntty).style.left  ); }
    ,get_top  : function(idntty) { return parseInt(document.getElementById(idntty).style.top  ); }
    ,get_wdth  : function(idntty) { return parseInt(document.getElementById(idntty).style.width ); }
    ,get_hght  : function(idntty) { return parseInt(document.getElementById(idntty).style.height); }
    ,set_lft  : function(idntty,nmbr) { document.getElementById(idntty).style.left  = nmbr+"px"; }
    ,set_top  : function(idntty,nmbr) { document.getElementById(idntty).style.top    = nmbr+"px"; }
    ,set_wdth  : function(idntty,nmbr) { document.getElementById(idntty).style.width  = nmbr+"px"; }
    ,set_hght  : function(idntty,nmbr) { document.getElementById(idntty).style.height = nmbr+"px"; }

    ,get_scrll_lft : function(idntty) {
        if(document.body.scrollLeft) return document.body.scrollLeft;
        else return document.documentElement.scrollLeft;
    }
    ,get_scrll_top : function(idntty) {
        if(document.body.scrollTop) return document.body.scrollTop;
        else return document.documentElement.scrollTop;
    }
    ,set_scrll_lft : function(nmbr) {
        document.body.scrollLeft = nmbr;
        document.documentElement.scrollLeft = nmbr;
    }
    ,set_scrll_top : function(nmbr) {
        document.body.scrollTop = nmbr;
        document.documentElement.scrollTop = nmbr;
    }
    ,clnt_wdth : function() {
        if(typeof(document.compatMode)=='undefined' ) return document.documentElement.clientWidth;
        else if(document.compatMode  =='BackCompat') return document.body.clientWidth;
        else if(document.compatMode  =='CSS1Compat') return document.documentElement.clientWidth;
    }
    ,clnt_hght : function() {
        if(typeof(document.compatMode)=='undefined' ) return document.documentElement.clientHeight;
        else if(document.compatMode  =='BackCompat') return document.body.clientHeight;
        else if(document.compatMode  =='CSS1Compat') return document.documentElement.clientHeight;
    }
    ,clnt_x : function(e) {
        if(e) return e.clientX; else  return event.clientX;
    }
    ,clnt_y : function(e) {
        if(e) return e.clientY; else  return event.clientY;
    }
};
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 2,483
17년 전 조회 1,795
17년 전 조회 1,970
17년 전 조회 2,936
17년 전 조회 2,390
17년 전 조회 2,022
17년 전 조회 4,434
17년 전 조회 3,278
17년 전 조회 1,668
17년 전 조회 3,797
17년 전 조회 3,033
17년 전 조회 2,296
17년 전 조회 1,533
17년 전 조회 2,560
17년 전 조회 2,301
17년 전 조회 2,212
17년 전 조회 2,157
17년 전 조회 1,405
17년 전 조회 2,112
17년 전 조회 3,137
17년 전 조회 1,660
17년 전 조회 1,907
17년 전 조회 1,574
17년 전 조회 1,820
17년 전 조회 1,794
17년 전 조회 1,703
17년 전 조회 2,780
17년 전 조회 2,560
17년 전 조회 2,349
17년 전 조회 1,640
17년 전 조회 2,651
17년 전 조회 4,482
17년 전 조회 2,976
17년 전 조회 1,880
17년 전 조회 2,075
17년 전 조회 3,480
17년 전 조회 2,460
17년 전 조회 4,042
17년 전 조회 1,897
17년 전 조회 2,505
17년 전 조회 2,342
17년 전 조회 1,844
17년 전 조회 2,360
17년 전 조회 2,160
17년 전 조회 2,194
17년 전 조회 3,318
17년 전 조회 2,382
17년 전 조회 1,662
17년 전 조회 1,682
17년 전 조회 2,345
17년 전 조회 3,431
17년 전 조회 2,365
17년 전 조회 1,770
17년 전 조회 4,458
17년 전 조회 2,258
17년 전 조회 3,688
17년 전 조회 6,263
17년 전 조회 1,714
17년 전 조회 1,863
17년 전 조회 1,452
17년 전 조회 1,553
17년 전 조회 3,109
17년 전 조회 2,127
17년 전 조회 2,819
17년 전 조회 1,506
17년 전 조회 3,409
17년 전 조회 2,398
17년 전 조회 2,835
17년 전 조회 1,632
17년 전 조회 1,978
17년 전 조회 1,354
17년 전 조회 1,417
17년 전 조회 1,997
17년 전 조회 1,426
17년 전 조회 4,523
17년 전 조회 1,741
17년 전 조회 2,211
17년 전 조회 7,329
17년 전 조회 1,591
17년 전 조회 2,123
17년 전 조회 3,373
17년 전 조회 1,419
17년 전 조회 2,200
17년 전 조회 1,356
17년 전 조회 2,053
17년 전 조회 2,384
17년 전 조회 3,201
17년 전 조회 1,457
17년 전 조회 1,524
17년 전 조회 1,776
17년 전 조회 1,448
17년 전 조회 4,580
17년 전 조회 4,122
17년 전 조회 3,023
17년 전 조회 1,795
17년 전 조회 1,535
17년 전 조회 1,833
17년 전 조회 2,758
17년 전 조회 1,945
17년 전 조회 2,230