A

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

· 17년 전 · 2328
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,465
17년 전 조회 1,775
17년 전 조회 1,948
17년 전 조회 2,919
17년 전 조회 2,358
17년 전 조회 2,005
17년 전 조회 4,405
17년 전 조회 3,253
17년 전 조회 1,642
17년 전 조회 3,770
17년 전 조회 3,014
17년 전 조회 2,283
17년 전 조회 1,517
17년 전 조회 2,542
17년 전 조회 2,275
17년 전 조회 2,195
17년 전 조회 2,138
17년 전 조회 1,386
17년 전 조회 2,097
17년 전 조회 3,120
17년 전 조회 1,643
17년 전 조회 1,885
17년 전 조회 1,554
17년 전 조회 1,808
17년 전 조회 1,776
17년 전 조회 1,684
17년 전 조회 2,765
17년 전 조회 2,546
17년 전 조회 2,330
17년 전 조회 1,618
17년 전 조회 2,634
17년 전 조회 4,463
17년 전 조회 2,958
17년 전 조회 1,869
17년 전 조회 2,049
17년 전 조회 3,459
17년 전 조회 2,440
17년 전 조회 4,024
17년 전 조회 1,880
17년 전 조회 2,485
17년 전 조회 2,324
17년 전 조회 1,823
17년 전 조회 2,342
17년 전 조회 2,141
17년 전 조회 2,172
17년 전 조회 3,298
17년 전 조회 2,363
17년 전 조회 1,650
17년 전 조회 1,669
17년 전 조회 2,329
17년 전 조회 3,411
17년 전 조회 2,346
17년 전 조회 1,747
17년 전 조회 4,441
17년 전 조회 2,239
17년 전 조회 3,676
17년 전 조회 6,241
17년 전 조회 1,694
17년 전 조회 1,843
17년 전 조회 1,436
17년 전 조회 1,534
17년 전 조회 3,085
17년 전 조회 2,104
17년 전 조회 2,800
17년 전 조회 1,493
17년 전 조회 3,383
17년 전 조회 2,378
17년 전 조회 2,807
17년 전 조회 1,611
17년 전 조회 1,961
17년 전 조회 1,342
17년 전 조회 1,404
17년 전 조회 1,982
17년 전 조회 1,407
17년 전 조회 4,510
17년 전 조회 1,722
17년 전 조회 2,200
17년 전 조회 7,315
17년 전 조회 1,572
17년 전 조회 2,103
17년 전 조회 3,352
17년 전 조회 1,401
17년 전 조회 2,180
17년 전 조회 1,341
17년 전 조회 2,039
17년 전 조회 2,366
17년 전 조회 3,180
17년 전 조회 1,444
17년 전 조회 1,512
17년 전 조회 1,763
17년 전 조회 1,432
17년 전 조회 4,560
17년 전 조회 4,103
17년 전 조회 2,999
17년 전 조회 1,779
17년 전 조회 1,517
17년 전 조회 1,809
17년 전 조회 2,745
17년 전 조회 1,932
17년 전 조회 2,212