/* Change the color to your own background color */ input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { transition: background-color 5000s ease-in-out 0s; -webkit-transition: background-color 9999s ease-out; -webkit-box-shadow: 0 0 0px 1000px white inset !important; -webkit-text-fill-color: #fff !important; } 참고 https://m.blog.naver..
function Accordion(){ $('.btn-acco').off().on('click', function(e){ $(this).parent('li').toggleClass('on'); $('.btn-acco').not(this).parent('li').removeClass('on'); $(this).next('.acco-con').stop().slideToggle(); $('.btn-acco').not(this).next('.acco-con').stop().slideUp(); }); }
아이폰 노치 영역까지 잡기 ( viewport-fit=cover )
html AL Algorithms Understanding users and environments with human-level intelligence AL Algorithms Understanding users and environments with human-level intelligence AL Algorithms Understanding users and environments with human-level intelligence AL Algorithms Understanding users and environments with human-level intelligence AL Algorithms Understanding users and environments with human-level i..
https://aramk.tistory.com/23 부트스트랩 modal 사용하기 w3schools나 bootstrap 공식홈페이지를 잘 참고하고 있지만, 매번 까먹어서 이참에 정리를 해본다. 1. 모달 띄우는 방법 모달에 트리거를 거는 방법은 두 가지가 있다. 태그나 , 혹은 다른 element 에 data- aramk.tistory.com - a나 button이나 div 등을 클릭했을 때 모달창 생성 - data-toggle="modal" 속성 꼭 넣어야 (제이쿼리로 제어할 경우 안 넣어도 됨) - data-target에 모달창의 id나 class 값 넣어서 모달창 생성으로 연결, a 태그의 경우 href를 활용해도 됨 (버튼이 두 개 이상인 경우가 많으므로 클래스로 제어하기) - data-*** 속..