드래그(셀렉션) 컬러 변경 ::selection{background-color:rgba(255, 229, 112, 0.5);} ::-moz-selection{background-color:rgba(255, 229, 112, 0.5);} ::-webkit-selection{background-color:rgba(255, 229, 112, 0.5);} 💅🏻 css 2022.03.07
다국어 언어변경 버튼 링크에 자바스크립트 추가 javascript:langChange('ko'); 메인 index에 기본 쿠키 설정 언어 변경 및 쿠키 생성스크립트 //언어변경 function langChange(lang) { var thisPathName = window.location.pathname;//현재 페이지의 경로 var splitUrl = '';//현재 페이지 경로를 '/'를 기준으로 쪼개기 위한 변수 var url = '';//최종적으로 변경 될 주소 splitUrl = thisPathName.split('/');//현재 페이지를 '/'를 기준으로 쪼개기 splitUrl[1] = lang;//쪼갠 주소 중 언어별 폴더를 클릭한 언어로 변경 : ex)'en'클릭 시: '/ko/about/...' .. 🕹 스크립트 2022.03.07
포지션 픽스할 때 애니메이션 animation: fixed 0.5s ease; @keyframes fixed { 0%{transform: translateY(-50px)} 100%{transform: translateY(0)} } 💅🏻 css 2022.03.07
그누보드 최신글 불러오기 //상단에 경로 추가 “최신글스킨”, “불러올 게시판”, 리스트갯수, 글자수 2022.03.06 - [📑 그누보드] - 그누보드 최신글에 내용 포함 하기 📑 그누보드 2022.03.07
그누보드에 파비콘 넣기 theme > basic > head.sub.php 에 파비콘 링크 넣기 https://c0de-n0te.tistory.com/m/13 파비콘 사이즈 및 링크 파일명 : favicon.ico 파일 사이즈 : 128*128 c0de-n0te.tistory.com 📑 그누보드 2022.03.07
오픈그래프 property 메타태그 image에 들어갈 사이즈(카카오톡 링크 공유 기준)추천: 1200*630이미지 용량 줄이기 https://www.iloveimg.com/ko카톡 캐시삭제 https://developers.kakao.com/tool/clear/og 카카오톡 메타태그 이미지 사이즈 🌐 html 2022.03.07
이미지 축소 돼도 선명하게 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) */ } 그냥 이미지 콘트라스트 주는것 같음 💅🏻 css 2022.03.06