javascript 팁이 있는 곳입니다.
  • 웹미니 한줄 전광판 영역 입니다.
글 수 109

12

조회 수 : 9133 신고 : 0

profile
작성자 : title: [ani]깜빡이는 표정빽짱구
포인트 : 56933 | 레벨 : 25
미리보기 :  
<head>와</head>사이에 아래소스 삽입
<script type="text/javascript>
function resizeWin(maxX,maxY,speed,delay,win){
    this.obj = "resizeWin" + (resizeWin.count++);
    eval(this.obj + "=this");
    if (!win)     this.win = self;    else this.win = eval(win);
    if (!maxX)    this.maxX = 560;    else this.maxX = maxX;
    if (!maxY)    this.maxY = 380;    else this.maxY = maxY;
    if (!speed)   this.speed = 1/2;   else this.speed = 1/speed;
    if (!delay)   this.delay = 0;    else this.delay = delay;
    this.doResize = (document.all || document.getElementById);
    this.stayCentered = false;
    
    this.initWin =     function(){
        if (this.doResize){
            this.resizeMe();
            }
        else {
            this.win.resizeTo(this.maxX + 10, this.maxY - 20);
            }
        }

    this.resizeMe = function(){
        this.win.focus();
        this.updateMe();
        }
    
    this.resizeTo = function(x,y){
        this.maxX = x;
        this.maxY = y;
        this.resizeMe();
        }
        
    this.stayCentered = function(){
        this.stayCentered = true;
        }

    this.updateMe = function(){
        this.resizing = true;
        var x = Math.ceil((this.maxX - this.getX()) * this.speed);
        var y = Math.ceil((this.maxY - this.getY()) * this.speed);
        if (x == 0 && this.getX() != this.maxX) {
            if (this.getX() > this.maxX) x = -1;
            else  x = 1;
            }
        if (y == 0 && this.getY() != this.maxY){
            if (this.getY() > this.maxY) y = -1;
            else y = 1;
            }
        if (x == 0 && y == 0) {
            this.resizing = false;
            }
        else {
            this.win.top.resizeBy(parseInt(x),parseInt(y));
            if (this.stayCentered == true) this.win.moveTo((screen.width - this.getX()) / 2,(screen.height - this.getY()) / 2);
            setTimeout(this.obj + '.updateMe()',this.delay)
            }
        }
        
    this.write =  function(text){
        if (document.all && this.win.document.all["coords"]) this.win.document.all["coords"].innerHTML = text;
        else if (document.getElementById && this.win.document.getElementById("coords")) this.win.document.getElementById("coords").innerHTML = text;
        }
        
    this.getX =  function(){
        if (document.all) return (this.win.top.document.body.clientWidth + 10)
        else if (document.getElementById)
            return this.win.top.outerWidth;
        else return this.win.top.outerWidth - 12;
    }
    
    this.getY = function(){
        if (document.all) return (this.win.top.document.body.clientHeight + 29)
        else if (document.getElementById)
            return this.win.top.outerHeight;
        else return this.win.top.outerHeight - 31;
    }
    
    this.onResize =  function(){
        if (this.doResize){
            if (!this.resizing) this.resizeMe();
            }
        }

    return this;
}
resizeWin.count = 0;
</script>
클릭했을때 창이뜨는 버튼이나 문구에 아래소스적용
<a href="javascript:;" onClick="javascript:dolion = new resizeWin(560,380);dolion.stayCentered();dolion.initWin();dolion.onResize();">문구나버튼</a>
불여우와 익스 모두 작동합니다. 위에 수치는 창 가로*세로를 뜻하며 응용을하시면 좋은 결과가 있을겁니다.
태그
profile 글쓴이 빽짱구

단점이 없는 사람은 장점도 거의 없다 - 에이브러햄 링컨

엮인글 :
https://web.webmini.net/javascript/14395/250/trackback
소중한 댓글 부탁드립니다.
추천수 10단위당 메달이 1개씩 노출되고, 추천수에 따라 배경색이 변하며, 일정수의 추천수를 받을시 BEST 아이콘이 붙게됩니다.
추천수에 따른 배경색 보기 본문으로 바로가기
  • 추천수 50개이상
  • 추천수 30개이상
  • 추천수 20개이상
  • 추천수 10개이상
  • 추천수 3개이상
닫기

첫번째 댓글을 남겨주세요!

List of Articles
번호 제목 글쓴이 날짜 추천 수 조회 수sort
69 javascript 지렁이게임 이병준 2010-05-27   8070
68 빈링크 #로 링크걸지 않고 다른방법으로 하기 [3] title: [ani]깜빡이는 표정빽짱구 2006-02-23 6 8014
67 D-day 스크립트 title: [ani]깜빡이는 표정빽짱구 2004-02-29 14 7979
66 F11키 막기 스크립트 title: [ani]깜빡이는 표정빽짱구 2006-03-05 10 7781
65 블랜딩 메뉴 효과 file [4] 정천 2010-03-05   7684
64 골때리는 자바스크립트 2탄 - JS의 delete문 이병준 2010-05-28   7670
63 골때리는 자바스크립트 세계 3탄. 이병준 2010-05-28   7587
62 상태표시줄 링크주소 가리기 [1] title: [ani]깜빡이는 표정빽짱구 2004-08-06 13 7569
61 골때리는 자바스크립트 번외편!!! 이병준 2010-05-28   7568
60 best of best 원클릭으로 클립보드에 저장하기 title: [ani]깜빡이는 표정빽짱구 2004-10-27 30 7497
59 상태표시줄에 링크주소 감추기 title: [ani]깜빡이는 표정빽짱구 2004-04-30 16 7286
58 파노라마 사진 스크립트 [1] 이병준 2010-05-27   7236
57 아이폰으로 접속했을떄 특정 페이지로 이동시키는 자바스크립트 주영아빠 2010-10-26   7197
56 골때리는 자바스크립트의 세계 1탄 이병준 2010-05-28   7170
55 링크주소 가리기소스 title: [ani]깜빡이는 표정빽짱구 2004-07-21 18 7150
54 바탕화면에 주소 자동생성 title: [ani]깜빡이는 표정빽짱구 2004-05-04 11 7126
53 링크 점선 없에는 스크립트 [3] Tooli 2010-02-27   7050
52 이미지에 마우스 올리면... 이미지가 상하로 살짝쌀짝 웹기프트 2010-11-13   7007
51 자바스크립트 3일차 prompt, parseInt [2] title: [ani]보라색 나비바비인형 2005-04-11 15 6995
50 골때리는 자바스크립트의 세계 8탄! 이병준 2010-05-28   6975