스크롤시 엘리먼트에 애니메이션 추가하기
2022. 5. 20. 18:06ㆍStudy/jQuery
HTML
<section class="container animation">
스크롤 시 애니메이션 추가
</section>
CSS
@keyframes animation-active {
0%{opacity: 0; position:relative; top:50px;}
100%{opacity: 1; position:relative; top:0;}
}
.animation{opacity: 0;}
.animation-active{animation: animation-active 1 .5s; animation-fill-mode:forwards;}
JS
$( function(){
const Elements = $('.animation');
function scrollSize(){
const scrollTop = $(document).scrollTop(); // 스크롤TOP 값
const windowH = $(window).height(); // 창 높이
const gap = 100;
const activeScroll = scrollTop + windowH - gap; // 기준값
Elements.map(function(){
const elementsX = $(this).offset().top; // 높이값
if(elementsX <= activeScroll){
$(this).addClass('animation-active');
}
});
}
scrollSize();
$(window).on('scroll', scrollSize);
});
'Study > jQuery' 카테고리의 다른 글
오늘하루 열지않기 팝업 (0) | 2022.06.02 |
---|---|
input[type="number"] 화살표 및 키보드 막기 (0) | 2022.05.18 |
input replace 유효성 체크 (1) | 2022.05.03 |
반응형 풀스크린 영상 (0) | 2022.01.12 |
jQuery 셀렉터, 요소 복사 및 잘라내기 (0) | 2022.01.11 |