A

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

· 17년 전 · 2357
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,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,576
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,831
17년 전 조회 1,807
17년 전 조회 1,711
17년 전 조회 2,793
17년 전 조회 2,568
17년 전 조회 2,364
17년 전 조회 1,649
17년 전 조회 2,662
17년 전 조회 4,491
17년 전 조회 2,992
17년 전 조회 1,892
17년 전 조회 2,091
17년 전 조회 3,492
17년 전 조회 2,472
17년 전 조회 4,052
17년 전 조회 1,911
17년 전 조회 2,511
17년 전 조회 2,355
17년 전 조회 1,862
17년 전 조회 2,373
17년 전 조회 2,183
17년 전 조회 2,211
17년 전 조회 3,331
17년 전 조회 2,392
17년 전 조회 1,677
17년 전 조회 1,697
17년 전 조회 2,358
17년 전 조회 3,448
17년 전 조회 2,379
17년 전 조회 1,784
17년 전 조회 4,467
17년 전 조회 2,273
17년 전 조회 3,701
17년 전 조회 6,276
17년 전 조회 1,730
17년 전 조회 1,874
17년 전 조회 1,466
17년 전 조회 1,568
17년 전 조회 3,120
17년 전 조회 2,143
17년 전 조회 2,824
17년 전 조회 1,519
17년 전 조회 3,425
17년 전 조회 2,406
17년 전 조회 2,845
17년 전 조회 1,639
17년 전 조회 1,992
17년 전 조회 1,368
17년 전 조회 1,427
17년 전 조회 2,015
17년 전 조회 1,437
17년 전 조회 4,535
17년 전 조회 1,752
17년 전 조회 2,219
17년 전 조회 7,349
17년 전 조회 1,598
17년 전 조회 2,136
17년 전 조회 3,387
17년 전 조회 1,432
17년 전 조회 2,210
17년 전 조회 1,367
17년 전 조회 2,058
17년 전 조회 2,392
17년 전 조회 3,206
17년 전 조회 1,467
17년 전 조회 1,533
17년 전 조회 1,792
17년 전 조회 1,458
17년 전 조회 4,594
17년 전 조회 4,131
17년 전 조회 3,035
17년 전 조회 1,810
17년 전 조회 1,543
17년 전 조회 1,845
17년 전 조회 2,766
17년 전 조회 1,956
17년 전 조회 2,239