html+Jquery+css 위쪽으로 돌아가기

10532 단어 jquery
jquery 라이브러리 준비 및 맨 위 그림 되돌리기
1,html 부분 코드
<!--      -->

    <div class="back2top" >

        <a href="javascript:;">

            <img src="back2top.png" alt="">

        </a>

    </div>

2, css 부분 스타일
<style>

    *{

        padding: 0;

        margin: 0;

    }

    #top{

        position: absolute;

        top:0;

    }

    .back2top{

        position: fixed;

        bottom: 10px;

        right:10px;

        width: 40px;

        height: 40px;

    }

    .back2top a{

        display: block;

        width: 100%;

    }

    .back2top a img{

        width: 100%;

    }



</style>

3, jquery 라이브러리 도입
<script src="jquery-1.8.3.min.js" type="text/javascript" charset="utf-8"></script>

4, jquery 부분 코드
<script type="text/javascript">

    jQuery(document).ready(function($) {

        //     

        $('.back2top').hide();

        

        $(window).scroll(function() {

            if($(window).scrollTop()>100){

                $('.back2top').fadeIn(1500);

            }else{

                $('.back2top').fadeOut(1500);

            }

        });

        $('.back2top a').click(function() {

            $('body,html').animate({scrollTop: 0}, 800);

            return false;

        });

    });

</script>

좋은 웹페이지 즐겨찾기