본문 바로가기

전체 글

(137)
js 2022. 4. 5. 09:38
[js]적응형 접속 구분 / 모바일 접속 시 모바일 사이트 이동 [ㅔ]
php 2022. 2. 28. 15:17
[php]숫자만 다른 파일 prev, next btn 함수로 만들기 같은 폴더 내 work1.php work2.php work3.php work4.php ... 순으로 나열이 되어있을때 사용하면 좋음
js 2022. 2. 28. 15:15
[js]top btn 탑버튼 반응형 디플논 let btn = $(".top_btn"); $(window).scroll(function(){ let st = $(window).scrollTop(); let w = $(window).width(); if(st>200 && w>1024){ btn.show(); }else{ btn.hide(); } }) btn.click(function(){ $("html, body").animate({ scrollTop: 0 },500) })
css 2022. 2. 4. 16:57
[css]nth-child 응용 See the Pen nth-child 응용 by sangmok-ye (@sangmok-ye) on CodePen.
html 2022. 2. 4. 10:18
[html]vscode비쥬얼스튜디오 코드 입력 단축키 section.cont$*6 div*10{$} 1 2 3 4 5 6 7 8 9 10
css 2022. 2. 3. 10:27
[css]transform: matrix See the Pen transform: matrix; perspective by sangmok-ye (@sangmok-ye) on CodePen. matrix (scaleX, skewY, skewX, scaleY, translateX, translateY) 기본값 : {transform: matrix(1,0,0,1,0,0); } perspective : transform의 Z값을 행하기위한 필수요소 참고 http://ds-overdesign.com/transform/matrix3d.html CSS3 Generator 3D MODE 親要素に transform-style:preserve-3d;transform: rotate3d(-1, 1, 0, 30deg); を指定し、立体描写を確認しやすくします。 ds-ov..
js 2022. 1. 26. 11:19
[js]input button enter 엔터로 버튼 누르기 keypress keydown See the Pen 띠 찾기 by sangmok-ye (@sangmok-ye) on CodePen. $("input").keypress(function(e){ if(e.which==13){ // 13번은 엔터키 $("button").click(); } }) 키프레스 번호 참고 http://b1ix.net/170 esc == 27 // keypress 안먹힘, keydown으로 해결 참고: https://yesm1230.tistory.com/102
기타 2022. 1. 25. 10:28
[기타]code-pen https://codepen.io/sangmok-ye sangmok-ye on CodePen codepen.io https://codepen.io/publisher-jy publisher-jy on CodePen codepen.io

top