[Javascript] 팝업창 띄우는 방법 / 팝업창 옵션 / window.popup 옵션/팝업옵션
1. 사용방법window.popup(‘주소’,’팝업창 이름’,’설정옵션’); var url=”test.html”; var option=”resizable=no, scrollbars=no, status=no,width=500, height=500”; window.open(url,’test’,option); var popUrl = "/spring/boardDetail?docnum="+$(this).attr('id');//팝업창에 출력될 페이지 URLvar popOption = "width=370, height=360, resizable=no, scrollbars=no, status=no;"; //팝업창 옵션(optoin)window.open(popUrl,"",popOption); 2. 팝업 옵션(yse 혹은..
2016. 7. 20.
[jQuery Plugin] ALS(any list scroller) / 슬라이드 플러그인
http://als.musings.it/ 참고! 사용 예) if(data> 0){ $("#AAA ").als({ visible_items: 3, scrolling_items: 1, orientation: "horizontal", circular: "yes", autoscroll: "yes", interval: 10000, speed: 2500, easing: "swing", direction: "right", start_from: 0 }); } else { $("# AAA ").als({ visible_items: 3, scrolling_items: 1, orientation: "horizontal", circular: "yes", autoscroll: "no", interval: 3000, speed:..
2016. 7. 7.