Contents

Develop
2003.04.23 10:52

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

조회 수 7819 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
889 Develop XML, JSON, BSON, MSGPACK 장,단점 비교 file hooni 2017.01.11 6222
888 Develop [android] 안드로이드 동영상 스트리밍 예제 2 hooni 2015.01.02 6268
887 Develop How to Test SMTP AUTH using Telnet hooni 2018.04.05 6330
886 Develop [ios] Objective-C 프로퍼티의 strong, weak, assign file hooni 2014.03.17 6377
885 Develop [android] How can I place app icon on launcher home screen? hooni 2016.11.15 6382
884 System/OS [android] 초간단 HTTP, POST 전송 샘플 1 file hooni 2017.02.16 6494
883 Etc 모바일 프로그래머가 갖추어야 할 필수 역량 file hooni 2017.02.16 6495
882 Develop [js] 자바스크립트 escape()를 PHP로 받기 hooni 2013.04.23 6897
881 System/OS Brave Browser for Debian, Ubuntu, Mint file hooni 2024.10.23 6985
880 Develop [ios] Facebook Cache 갱신하는 함수 file hooni 2017.02.27 7079
879 System/OS 맥에서 포트 확인하고 닫기 (mac) hooni 2022.03.22 7102
878 Develop [ios] 동영상 플레이어 샘플 (for Local File) file hooni 2017.02.07 7142
Board Pagination Prev 1 ... 20 21 22 23 24 25 26 27 28 29 ... 99 Next
/ 99