2021-02-17 게시 됨2022-05-15 업데이트 됨web몇 초안에 읽기 (약 54 단어)scroll css 이런 모양의 스크롤바를 만들 수 있다 index.scss123456789101112131415161718/* scroll bar */& { &::-webkit-scrollbar { width: 10px; } &::-webkit-scrollbar-track { background: #f1f1f1; } &::-webkit-scrollbar-thumb { background: #888; } &::-webkit-scrollbar-thumb:hover { background: #555; }} 참고 https://stackoverflow.com/questions/50817727/change-scrollbar-height
2020-12-23 게시 됨2021-08-04 업데이트 됨web1분안에 읽기 (약 150 단어)sass, scss 연습 Learn Sass In 20 Minutes | Sass Crash Course 를 보면서 sass, scss 를 공부해보았다 sass1234567891011121314151617181920212223// 변수$primaryBtn: rgb(78, 201, 253);$textColor: rgb(0, 0, 0);button { background: $primaryBtn; // 중첩 nesting 가능 // & ; 상위 선택자 &::after { content: 'hellooo'; } // 중첩된 속성 margin: { top: 10px; left: 20px; } padding: { bottom: 40px; right: 30px; }} 중첩 이 기능 하나만으로도 엄청나게 강력한 기능이라고 생각한다 스타일 적용되는 것도 직관적이고, html이랑 같은 구조로 css를 작성할 수 있을 것 같다 연습 코드 저장소 https://github.com/chinsun9/sass-practice
2020-12-02 게시 됨2021-08-04 업데이트 됨web2분안에 읽기 (약 255 단어)Smooth Page Transitions Smooth Page Transitions With Javascript Tutorial를 보고 따라만들었다 결과 보러가기 후기 영상 제목만 보고 단순히 css js를 이용한 트랜지션을 구현할 줄 알았는데, node로 parcel, gsap, highway 를 사용해서 웹만드는 것을 배우게되었다 parcel을 처음 써보았는데, 개발할 때도, 배포할 때에도 좋은 것 같다 higyway와 gsap으로 애니메이션을 구현해 보았다 parcel을 이용해 웹을 만들어 깃허브 페이지로 배포할 때, parcel build index.html --out-dir docs --public-url ./ 위 처럼 옵션을 넣어줘야한다 –out-dir docs 는 깃허브 페이지 설정할 때 디렉터리 –public-url ./ 는 이미지, css, js 경로가 망가지지 않도록한다 참고 Smooth Page Transitions With Javascript Tutorial Use Parcel to Bundle a Hyperapp App & Deploy to GitHub Pages https://github.com/chinsun9/smooth-page-transitions