Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ffi-napi
- nextjs
- device in use
- dvh
- Each child in a list should have a unique "key" prop.
- animation
- camera access
- silent printing
- github lfs
- npm package
- custom printing
- 이미지 데이터 타입
- Recoil
- html
- ELECTRON
- rolldown
- electron-packager
- Failed to compiled
- augmentedDevice
- 티스토리 성능
- camera permission
- react-native-dotenv
- github 100mb
- react-native
- github pdf
- Can't resolve
- adb connect
- vercel git lfs
- Git
- adb pair
Archives
- Today
- Total
Bleeding edge
scss animation mixin 본문
css처럼 애니메이션을 바로 사용하게 된다면 scss에서는 문제가 발생한다. 이유는 애니메이션의 name이 바뀐다! 만일 animation이름을 fadeOut이라는 이름을 SnackBar에서 사용하면 애니메이션이름은 다음과 같이 바뀐다
.Snackbar_wrapper{
animation-name: Snackbar_fadeOut__uuidexample;
}
scss에서는 애니메이션을 제외하고는 이름의 중복을 피해주는 sass 덕분에 편리하지만, 애니메이션에서 mixin을 사용하지 않으면 상당히 불편하다. 그래서 다음과 같은 mixin을 작성하였다.
mixin
@mixin animate($animation, $duration, $method, $times) {
animation-name: $animation;
animation-duration: $duration;
animation-timing-function: $method;
animation-iteration-count: $times;
}
이 mixin은 다음과 같이 사용할 수있다.
사용 예시
.example {
@include animate(animationname, 1s, linear, infinite);
}
@keyframes animationname {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
'HTML & CSS' 카테고리의 다른 글
티스토리 성능 개선 (1) | 2024.02.17 |
---|---|
[CSS] 모바일에서 pressed 적용하기 (1) | 2023.11.20 |
모바일 디바이스에서 overscroll 막기 (1) | 2023.10.21 |
노치(Safe area) CSS로 고려하는 방법 (0) | 2023.10.14 |
transition와 height를 이용하여 애니메이션을 넣기 (0) | 2023.05.06 |