본문 바로가기

전체 글

(137)
php 2022. 1. 5. 10:00
[php]xampp 아파치 설정 xampp>apache>conf>httpd.conf DocumentRoot "C:/xampp/htdocs/폴더명" 으로 변경 후 로컬호스트 작업 가능
js 2021. 12. 29. 17:53
[js]스크롤 이동 메뉴 이펙트 $(function(){ var menu = $(".gnb li"); var section = $("main section"); menu.click(function(){ var i=$(this).index(); // console.log(i); var tg=section.eq(i); var tt=tg.offset().top; $("html, body").animate({ scrollTop: tt - 90 },500); // alert(tt); return false; }); $(window).scroll(function(){ var st=$(window).scrollTop(); //스크롤 위치 var bt=$(document).height()-$(window).height(); if(st>=50){ $(..
js 2021. 12. 29. 15:36
[js]메인슬라이드 랜덤 출력 img일경우 let mp4 변경
js 2021. 12. 17. 18:03
[js]스크롤바 이동 버튼 좌 우 See the Pen Untitled by sangmok-ye (@sangmok-ye) on CodePen.
css 2021. 12. 17. 15:51
[css]스크롤바 디자인 .slimscroll::-webkit-scrollbar { width: 10px; height: 10px; } .slimscroll::-webkit-scrollbar-thumb { background-color: #B0B0B0; border-radius: 10px; background-clip: padding-box; border: 2px solid transparent; } .slimscroll::-webkit-scrollbar-track { background-color: #E0E0E0; border-radius: 10px; box-shadow: inset 0px 0px 3px white; } overflow사용 시
html 2021. 12. 15. 17:08
[html]구글 아이콘 icon https://fonts.google.com/icons
php 2021. 12. 14. 17:11
[php]겟메소드 get method 포스트메소드 post method //메소드는 포스트 or 겟
css 2021. 12. 9. 12:22
[css]이미지 축소 시 화질 저하 감소 img[src$=".gif"], img[src$=".png"], img[src$=".jpg"] { image-rendering: -moz-crisp-edges; /* Firefox */ image-rendering: -o-crisp-edges; /* Opera */ image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */ image-rendering: crisp-edges; -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */ }

top