본문 바로가기
javaScript/jQuery

스크롤 하면 생성되는 top버튼 만들기 - jQuery 플러그인

by mooyou 2023. 10. 8.
728x90
300x250
SMALL

스크롤 하면 생성되는 top버튼 jQuery 플러그인으로 만들기

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Scroll to Top Button</title>
    <style>
        /* 버튼 숨기기 */
        #scrollButton {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            cursor: pointer;
            border: none;
            border-radius: 5px;
        }
        .box{
            height: 1000px;
        }
    </style>
</head>
<body>
    <div class="box"></div>
    <!-- 스크롤 버튼 -->
    <button id="scrollButton">Scroll to Top</button>

</body>
</html>

 

script

(function($) {
    $.fn.scrollToTopButton = function() {
        var $button = this;

        // 버튼 클릭 시 페이지 상단으로 스크롤
        $button.on('click', function() {
            $('html, body').animate({scrollTop: 0}, 500);
        });

        // 문서의 스크롤 위치를 감지하여 버튼 표시/숨김 처리
        $(document).scroll(function() {
            if ($(this).scrollTop() > 200) {
                $button.fadeIn();
            } else {
                $button.fadeOut();
            }
        });

        return this; // jQuery 체이닝을 위해 자기 자신을 반환
    };
})(jQuery);


$(document).ready(function() {
    $('#scrollButton').scrollToTopButton();
});
728x90
반응형
LIST

댓글