본문 바로가기
반응형

개발/javascript16

Swiper를 이용하여 슬라이더에 유튜브 영상 넣기 다른 슬라이더들은 화면 이동시 기존 영상재생지점이 초기화 되거나 하는 문제가 있는데 Swiper 는 그런일이 없이 매끄럽게 진행된다 JSFiddle 로 만든 예제 https://jsfiddle.net/kaqxgod3/ Edit fiddle - JSFiddle - Code Playground jsfiddle.net 공식사이트 https://swiperjs.com/ Swiper - The Most Modern Mobile Touch Slider Swiper is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior. swiperjs.com github 소스 예제 https.. 2021. 12. 26.
html 화면을 PDF로 출력하기 구글에 검색해보면 jspdf 와 html2canvas 를 이용한 pdf출력법이 많고 나도 이걸 사용하고 있었지만 이걸 사용하면 page-break-before 를 사용한 페이지 나누기 같은 기능들을 사용할 수 없다 이 모든것은 html2pdf 한방으로 끝난다 https://github.com/eKoopmans/html2pdf.js GitHub - eKoopmans/html2pdf.js: Client-side HTML-to-PDF rendering using pure JS. Client-side HTML-to-PDF rendering using pure JS. Contribute to eKoopmans/html2pdf.js development by creating an account on GitHub. .. 2021. 12. 23.
.live() 함수 사용중 에러 1.9 버전 이후로 사용이 중단되었으며 .on() 함수로 대체 https://api.jquery.com/live/ .live() | jQuery API Documentation Description: Attach an event handler for all elements which match the current selector, now and in the future. Note: This API has been removed in jQuery 1.9; please use on() instead. This method provides a means to attach delegated event handlers to the do api.jquery.com 2021. 12. 20.
enter를 쳤을때 alert띄우기 input 창에서 enter를 입력했을때 확인버튼을 클릭한것과 같은 효과를 주기위해 사용 $('#search_id').on('keypress', function(e){ // 13 Enter if( e.which == 13 ){ alert("확인"); } }); 2021. 12. 20.
728x90