Contents

Develop
2003.04.23 10:52

[js] 점점 커지는 새창..

조회 수 7020 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
## 새창 띄우는 스크립트..
<script language="JavaScript">
<!--
        function newin(width,height,url,name,opt) {
                var scroll = (opt == "no_scroll") ? "no" : "yes";
                msgWindow=window.open(url,name,'statusbar=no,scrollbars='+scroll+',status=no,resizable=yes,width='+width+',height='+height)
        }

        function newin_menu(width,height,url,name) {
                msgWindow=window.open(url,name,'toolbar=yes,statusbar=no,scrollbars=yes,status=yes,resizable=yes,width='+width+',height='+height)
        }
// -->
</script>



## 사용 예
<a href="javascript:newin(WIDTH, HEIGHT, 'URL','simple_view')">클릭</a>



## 대상 url 파일에 삽입될 내용..
<script language='JavaScript'>
        self.window.focus();
        self.resizeTo(0,0);
        self.moveTo(50,30); // moveTo(x,y); 에서 x와 y좌표, 창의 위치
        bigger_win(630, 520);

        function bigger_win(width, height) {
                var long_leng = (width > height) ? width: height;
                var tmp_width = 0;
                var tmp_height = 0;
                var cnt_per = 50;
                
                for(i=0;i<cnt_per;i++) {
                        if(tmp_width < width) tmp_width += (width/cnt_per);
                        if(tmp_height < height) tmp_height += (height/cnt_per);
                        
                        self.resizeTo(tmp_width, tmp_height);
                }
                self.resizeTo(width, height);
                self.window.focus();
        }
        
        function newin(width,height,url,name,opt) {
                var scroll = (opt == 'no_scroll') ? 'no' : 'yes';
                msgWindow=window.open(url,name,'statusbar=no,scrollbars='+scroll+',status=no,resizable=yes,width='+width+',height='+height)
        }
</script>


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
565 Develop 프로그래밍에서 foo, bar 함수의 유래 file hooni 2013.06.25 21461
564 Develop [ios] 패스(path) 앱 메뉴 스타일 secret hooni 2013.06.11 0
563 Develop [ios] 스터디 자료 (from 종길M) secret hooni 2013.06.04 0
562 Develop [ios] IB 없이 개발하기 (html) secret hooni 2013.05.31 0
561 Develop [iphone] PerfectlyClear 보정솔루션 최신.. secret hooni 2013.05.28 0
560 Develop [Android] 2010년에 만들었던 세미나 자료. file hooni 2013.05.28 64737
559 Develop [js] 자바스크립트의 클로저 (JavaScript's Closure) hooni 2013.05.15 13014
558 Develop 서기의 PHP 동영상 강의(싱싱해) hooni 2013.05.15 31042
557 Develop [js]모바일 웹에서 orientationchange hooni 2013.04.23 19429
556 Develop [android] keytool을 사용하여 키스토어 생성 hooni 2013.04.23 69574
555 Develop [js] 모바일웹에서 이미지 저장하는거 (context menu) 막기 hooni 2013.04.23 26421
554 Develop [js] JSON 컨트롤.. 재귀호출로 값 출력하기 hooni 2013.04.23 28670
Board Pagination Prev 1 ... 19 20 21 22 23 24 25 26 27 28 ... 71 Next
/ 71