A

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

· 17년 전 · 2359
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,495
17년 전 조회 1,808
17년 전 조회 1,987
17년 전 조회 2,950
17년 전 조회 2,404
17년 전 조회 2,037
17년 전 조회 4,449
17년 전 조회 3,290
17년 전 조회 1,684
17년 전 조회 3,814
17년 전 조회 3,045
17년 전 조회 2,307
17년 전 조회 1,549
17년 전 조회 2,579
17년 전 조회 2,310
17년 전 조회 2,228
17년 전 조회 2,166
17년 전 조회 1,423
17년 전 조회 2,123
17년 전 조회 3,154
17년 전 조회 1,671
17년 전 조회 1,921
17년 전 조회 1,592
17년 전 조회 1,833
17년 전 조회 1,813
17년 전 조회 1,714
17년 전 조회 2,796
17년 전 조회 2,572
17년 전 조회 2,368
17년 전 조회 1,652
17년 전 조회 2,664
17년 전 조회 4,494
17년 전 조회 2,998
17년 전 조회 1,897
17년 전 조회 2,097
17년 전 조회 3,496
17년 전 조회 2,477
17년 전 조회 4,059
17년 전 조회 1,916
17년 전 조회 2,516
17년 전 조회 2,361
17년 전 조회 1,869
17년 전 조회 2,377
17년 전 조회 2,185
17년 전 조회 2,216
17년 전 조회 3,336
17년 전 조회 2,394
17년 전 조회 1,679
17년 전 조회 1,704
17년 전 조회 2,360
17년 전 조회 3,453
17년 전 조회 2,381
17년 전 조회 1,785
17년 전 조회 4,467
17년 전 조회 2,277
17년 전 조회 3,704
17년 전 조회 6,281
17년 전 조회 1,733
17년 전 조회 1,876
17년 전 조회 1,469
17년 전 조회 1,569
17년 전 조회 3,125
17년 전 조회 2,149
17년 전 조회 2,828
17년 전 조회 1,525
17년 전 조회 3,426
17년 전 조회 2,409
17년 전 조회 2,849
17년 전 조회 1,640
17년 전 조회 1,998
17년 전 조회 1,371
17년 전 조회 1,430
17년 전 조회 2,020
17년 전 조회 1,440
17년 전 조회 4,537
17년 전 조회 1,756
17년 전 조회 2,223
17년 전 조회 7,354
17년 전 조회 1,602
17년 전 조회 2,139
17년 전 조회 3,391
17년 전 조회 1,434
17년 전 조회 2,211
17년 전 조회 1,372
17년 전 조회 2,061
17년 전 조회 2,395
17년 전 조회 3,209
17년 전 조회 1,472
17년 전 조회 1,537
17년 전 조회 1,795
17년 전 조회 1,461
17년 전 조회 4,598
17년 전 조회 4,133
17년 전 조회 3,039
17년 전 조회 1,811
17년 전 조회 1,545
17년 전 조회 1,846
17년 전 조회 2,767
17년 전 조회 1,956
17년 전 조회 2,244