스크롤 막대 거리 가져오기

2027 단어
 <script type="text/javascript">

            $(document).ready(function() {

                $(window).scroll(function() {

                    //$(document).scrollTop()  

                    //$(document).scrollLeft()  

                    if ($(document).scrollTop() <= 0) {

                        alert(" 0");

                    }

                    if ($(document).scrollTop() >= $(document).height() - $(window).height()) {
                        alert(" " + $(document).scrollTop());
                    }
                });
            });


script>

 
다음으로 전송:https://www.cnblogs.com/zxcc/p/7838988.html

좋은 웹페이지 즐겨찾기