A

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

· 17년 전 · 2361
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,497
17년 전 조회 1,808
17년 전 조회 1,987
17년 전 조회 2,951
17년 전 조회 2,404
17년 전 조회 2,037
17년 전 조회 4,450
17년 전 조회 3,291
17년 전 조회 1,687
17년 전 조회 3,816
17년 전 조회 3,045
17년 전 조회 2,308
17년 전 조회 1,550
17년 전 조회 2,583
17년 전 조회 2,314
17년 전 조회 2,229
17년 전 조회 2,171
17년 전 조회 1,424
17년 전 조회 2,125
17년 전 조회 3,155
17년 전 조회 1,673
17년 전 조회 1,923
17년 전 조회 1,592
17년 전 조회 1,835
17년 전 조회 1,815
17년 전 조회 1,715
17년 전 조회 2,798
17년 전 조회 2,574
17년 전 조회 2,370
17년 전 조회 1,653
17년 전 조회 2,667
17년 전 조회 4,495
17년 전 조회 2,999
17년 전 조회 1,900
17년 전 조회 2,099
17년 전 조회 3,498
17년 전 조회 2,483
17년 전 조회 4,061
17년 전 조회 1,918
17년 전 조회 2,520
17년 전 조회 2,364
17년 전 조회 1,869
17년 전 조회 2,378
17년 전 조회 2,186
17년 전 조회 2,218
17년 전 조회 3,340
17년 전 조회 2,394
17년 전 조회 1,682
17년 전 조회 1,704
17년 전 조회 2,362
17년 전 조회 3,454
17년 전 조회 2,381
17년 전 조회 1,785
17년 전 조회 4,468
17년 전 조회 2,280
17년 전 조회 3,704
17년 전 조회 6,281
17년 전 조회 1,733
17년 전 조회 1,877
17년 전 조회 1,471
17년 전 조회 1,571
17년 전 조회 3,128
17년 전 조회 2,151
17년 전 조회 2,830
17년 전 조회 1,526
17년 전 조회 3,426
17년 전 조회 2,410
17년 전 조회 2,849
17년 전 조회 1,642
17년 전 조회 2,001
17년 전 조회 1,371
17년 전 조회 1,432
17년 전 조회 2,023
17년 전 조회 1,440
17년 전 조회 4,539
17년 전 조회 1,757
17년 전 조회 2,223
17년 전 조회 7,354
17년 전 조회 1,602
17년 전 조회 2,141
17년 전 조회 3,391
17년 전 조회 1,434
17년 전 조회 2,213
17년 전 조회 1,373
17년 전 조회 2,062
17년 전 조회 2,398
17년 전 조회 3,212
17년 전 조회 1,472
17년 전 조회 1,537
17년 전 조회 1,799
17년 전 조회 1,461
17년 전 조회 4,599
17년 전 조회 4,135
17년 전 조회 3,040
17년 전 조회 1,812
17년 전 조회 1,547
17년 전 조회 1,849
17년 전 조회 2,769
17년 전 조회 1,957
17년 전 조회 2,248