SASS 썸네일형 리스트형 [SASS]애니메이션 mixin 설치하기 yarn add node-sass mixin 제작 //animation @mixin ani($num) { -webkit-transition: $num ease-in-out; -moz-transition: $num ease-in-out; -o-transition: $num ease-in-out; transition: $num ease-in-out; } 사용하기 .example{ width: 100px; height: 100px; opacity:1; @include ani(0.3s); &:focus, &:hover{ width: 100px; height: 100px; opacity:0.8; @include ani(0.3s); } } 2019/07/11 - [프로그램 강좌] - [SASS]#1 설치방.. 더보기 이전 1 다음