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

3

조회 수 : 5316 신고 : 0

profile
작성자 : title: [ani]깜빡이는 표정빽짱구
포인트 : 56933 | 레벨 : 25
미리보기 :  
1. 아래의 소스를 <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 = 400; else this.maxX = maxX;
if (!maxY) this.maxY = 300; else this.maxY = maxY;
if (!speed) this.speed = 1/5; 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;

booyah = new resizeWin(가로너비,세로길이);//윈도우싸이즈보다 가로 12, 세로 28픽셀을 더한 높이와 넓이
booyah.stayCentered();//윈도우 중앙정렬
//-->
</script>

2. 아래의 소스를 <body>와 교체해주세요.
<body onload="booyah.initWin()" onresize="booyah.onResize()">
profile 글쓴이 빽짱구

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

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

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

List of Articles
번호 제목 글쓴이 날짜 추천 수 조회 수sort
49 골때리는 자바스크립트 번외편!!! 이병준 2010-05-28   7565
48 상태표시줄 링크주소 가리기 [1] title: [ani]깜빡이는 표정빽짱구 2004-08-06 13 7569
47 골때리는 자바스크립트 세계 3탄. 이병준 2010-05-28   7585
46 골때리는 자바스크립트 2탄 - JS의 delete문 이병준 2010-05-28   7669
45 블랜딩 메뉴 효과 file [4] 정천 2010-03-05   7683
44 F11키 막기 스크립트 title: [ani]깜빡이는 표정빽짱구 2006-03-05 10 7781
43 D-day 스크립트 title: [ani]깜빡이는 표정빽짱구 2004-02-29 14 7979
42 빈링크 #로 링크걸지 않고 다른방법으로 하기 [3] title: [ani]깜빡이는 표정빽짱구 2006-02-23 6 8014
41 javascript 지렁이게임 이병준 2010-05-27   8070
40 익스플로어 상태 표시줄에 스크립트 에러 경고 없애기 title: [ani]깜빡이는 표정빽짱구 2005-01-20 13 8137
39 이미지 클릭시 최적사이즈로 팝업 열리게 하는 스크립트 늘푸른 2010-07-24   8139
38 자바스크립트 암호방법들 file 혁이 2010-04-23   8203
37 타이핑 텍스트 12 (뉴스티커 기능) [4] 웹준 2009-11-04   8247
36 카피라이터에 년도를 자동으로 바꿔주자! [5] title: [ani]깜빡이는 표정빽짱구 2010-02-08   8282
35 브라우저를 동적으로 부드럽게 리사이징하기 title: [ani]깜빡이는 표정빽짱구 2006-02-05 14 8343
34 best of best 제자리에서 페이딩되면서 바뀌며보여주는 뉴스티커 title: [ani]깜빡이는 표정빽짱구 2006-01-07 32 8458
33 새로고침할때마다 바뀌는 랜덤배너 소스 title: [ani]깜빡이는 표정빽짱구 2011-07-21   8495
32 '베너가져가기' 클릭 시 "소스"가 복사되는 스크립트 정천 2010-03-05 1 8671
31 제홈에 쓰인 마우스 오른쪽 금지태그 title: [ani]깜빡이는 표정빽짱구 2004-03-31 10 8958
30 롤링 자동 스크립트 웹기프트 2010-11-13   9125