scss 반응형 position $image-width: 1912; // 이미지 가로 값$image-height: 625; // 이미지 세로 값@mixin position($t, $l) { //100% 일 때 탑, 레프트 값) top: calc($t / $image-height * 100%); left: calc($l / $image-width * 100%);}.p-1 { @include position($t: 238, $l: 664)} 💅🏻 css 2024.12.18
포지션 픽스할 때 애니메이션 animation: fixed 0.5s ease; @keyframes fixed { 0%{transform: translateY(-50px)} 100%{transform: translateY(0)} } 💅🏻 css 2022.03.07