본문 바로가기

대돌이의 하루/PUBLISHING

레이어팝업 흐림현상 transform 버그. %값을쓸때 흐려진다. .popUp_consultFirst { padding: 100px 150px; z-index: 100; position: fixed; top: 30%; left: 30%; background-color: #ffffff; border-radius: 30px; transform: translate(-50%, -50%), translate(-0.1px, -0.1px); /* transform: translateX(calc(-50% + 0.5px)); */ /* transform: translateY(calc(-25% + 0.5px)); */ /* -webkit-font-smoothing: subpixel-antialiased; transform: translate.. 더보기
css button 가운데 정렬 https://m.blog.naver.com/PostView.nhn?blogId=japkey&logNo=110154457664&proxyReferer=https:%2F%2Fwww.google.com%2F 더보기
jquery top 버튼 스스륵 맨위로 올라가는버튼 https://cofs.tistory.com/188 jquery 를 이용하여 화면 맨위로 자연스럽게 올라가는 TOP 버튼 만들기 jquery 를 이용하여 화면 맨위로 자연스럽게 올라가는 기능을 구현해 보겠습니다. 스크롤을 많이 내리면 맨위로 한번에 올라가는 이벤트가 필요합니다. 한번에 화면 최상단으로 올라가는 방법도 있지만 animation.. cofs.tistory.com 어차피 fade-in으로 들어오기때문에 display : none; 을 하는것이 중요하다 더보기
jquery / js 반응형 헤더 고정 스크롤 내릴때 // ------------------헤더----------------- var windowWidth = $(window).width(); if (windowWidth jbOffset.top) { $(".m-header").addClass("header__fixed"); } else { $(".header__fixed").removeClass("header__fixed"); } }); }); } .. 더보기
callback 함수란? 콜백이란 https://dalkomit.tistory.com/65 더보기
[nodejs] mac - 특정 포트를 사용중인 프로세스 https://new93helloworld.tistory.com/138 더보기
제이쿼리 countUp.js 카운팅하기 https://imivory.tistory.com/1 [Counter-Up] 지정된 숫자까지 카운트업, 숫자애니메이션 [Counter-Up] 지정된 숫자까지 카운트업, 숫자애니메이션 지정된 숫자까지 카운트업을 시켜주는 제이쿼리 플러그인입니다. 다른 카운트업 플러그인은 적용시켰을 때 하단에 있다하더라도 메인화면이 뜨자마자 실.. imivory.tistory.com https://www.happyjung.com/lecture/2721 더보기
css :ntc-child , nth-of-type ntc-child 일경우엔 같은 라인에 요소를 지정하는것!! ntc-of-type은 같은라인, 같은유형에 있는것을 요소로 지정하는 것이다. ul li span:ntc-child(1){ color : blue; } 만약 동일선상에 있는요소중 첫번째가 span이 아니라면 적용이 되질 않는다 ^^;; *추가적으로 뒤에서부터 지우는법 .index_interior_tip ul li:nth-last-of-type(-n + 4) { display: none; } https://webisfree.com/2015-12-16/[css]-nth-child%EC%99%80-nth-of-type-%EC%84%A0%ED%83%9D%EC%9E%90-%EB%B9%84%EA%B5%90%ED%95%98%EA%B8%B0 https://m.. 더보기