전체 글 178

유튜브 iframe 플레이어 매개변수 설정

iframe 주소 뒤에 ?쓰고 뒤에 설정 붙이면 됨, 설정 여러개 할땐 &로 이어줌 자동재생: autoplay=1 음소거: amp;mute=1 관련재생 없애기: rel=0 컨트롤 없애기: controls=0 반복재생: &playlist=비디오ID&loop=1 ex) src="https://www.youtube.com/embed/주소?autoplay=1&mute=1&rel=0&controls=0&playlist=비디오ID&loop=1&color=white&iv_load_policy=3" https://developers.google.com/youtube/youtube_player_demo YouTube 플레이어 데모 | YouTube IFrame Player API | Google Developers Yo..

🌐 html 2022.06.16

페이지로드가 됐을때 setTimeout 스크롤이벤트

window.onload = function () { //페이지 열면 const thisLocation = window.location.href; //현재주소 if($(".subTitle").length){ //서브타이틀이 있으면 function bMatch(){ //주소에 해당하는 글자가 있으면 스크롤애니메이션 없애기위해 clearTimeout(timer); $('html, body').animate({ scrollTop: $('.subpage .subTitle').outerHeight()-85 }, 0); }; let timer = setTimeout(function() { // 2초뒤에 서브타이틀 높이만큼 스크롤 됨 $('html, body').animate({ scrollTop: $('.subpa..

🕹 스크립트 2022.06.07

엑셀입력 -> 그누보드 DB 업로드

1. 엑셀에 작성 후 2. https://tableconvert.com/ Table Convert Online - Make it easier to work with tables TableConvert is a powerful online table converter that converts between CSV, LaTeX table, HTML, JSON Array, insert SQL, Markdown table and MediaWiki table. tableconvert.com 여기서 excel to sql 해줌 3. 필요한 옵션 선택해주고 클립보드로 복사나 다운로드를 해서 4. sql 프로그램에서 쿼리 실행시킴

📑 그누보드 2022.05.26
728x90