<script type="text/javascript">
var child = window.open('', '', 'width=300, height=200');
// 가로300, 세로 200인 윈도우창을 만든다
var width = screen.width;
var height = screen.height;
//화면 너비,높이
child.moveTo(0, 0);
child.resizeTo(width, height);
//화면 너비 높이를 width, height로 지정
setInterval(function () {
child.resizeBy(-20, -20);
// 크기는 -20씩 작아지고
child.moveBy(10, 10);
// 위치는 10씩 이동한다
}, 2000);
</script>
화면이 가운데 쪽으로 점점 작아진다
'개발개발 > 자바스크립트' 카테고리의 다른 글
Navigator 속성 보기 (0) | 2012.08.27 |
---|---|
location 객체 속성 보기 (0) | 2012.08.27 |
window 객체 절대 이동 (0) | 2012.08.27 |
Window 객체 (0) | 2012.08.27 |
기본 내장 객체 _ 자주 쓰는 메소드 (0) | 2012.08.27 |