State ( hover, focus, visited, active)
2021. 11. 29. 21:26
Frontend/HTML, CSS, DOM, jQuery
button:active { background-color: tomato; } button:hover { background-color: yellow; } input:focus { background-color: green; } a{ border-radius: 10px; padding:5px; background-color: yellowgreen; } a:visited { color: tomato; } a:hover { color: violet; } a:hover { color: blue; } form{ border: 1px solid salmon; display:flex; flex-direction:column; padding:20px; } form:focus-within{ border-color:se..
Alert을 예쁘게 sweetalert
2021. 11. 26. 12:13
Frontend/프론트 라이브러리
https://sweetalert2.github.io/#download
리스트 표현하기 좋은 Grid 라이브러리 Tui grid( 토스트 그리드)
2021. 11. 26. 09:56
Frontend/프론트 라이브러리
리액트용 https://github.com/nhn/toast-ui.react-grid 공식 사이트 https://ui.toast.com/tui-grid TOAST UI :: Make Your Web Delicious! The TOAST UI Is Free Open-source JavaScript UI Libraries Maintained By NHN. ui.toast.com 참고 API https://forward.nhn.com/2020/seoul/hands-on-labs/toastui.grid-account-book/index.html# TOAST UI Grid로 가계부 만들기 — TOAST UI Grid로 가계부 만들기 1.0 documentation © Copyright NHN Corp. All r..
에러) useEffect 무한루프(infinite useEffect)
2021. 11. 26. 09:41
Frontend/React & React.Native &Next.js
위에처럼하면 무한으로 요청하게 되는 것이 발견되었다. 아래 빈배열을 추가해주면 된다. 참고 사이트 https://dmitripavlutin.com/react-useeffect-infinite-loop/ https://velog.io/@hojin11choi/React-infinite-loop-when-using-setState-inside-useEffect