js返回顶部小Demo

Posted renqiaoqiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js返回顶部小Demo相关的知识,希望对你有一定的参考价值。


    <style>
        .divH 
            height: 1800px;
        
        .divT 
            width: 50px;
            height: 50px;
            font-size: 18px;
            background-color: #2F4F4F;
            text-align: center;
            color: white;
            position: fixed;
            right: 18px;
            bottom: 18px;
        
        .divT:hover
            cursor: pointer;
        
        .hide 
            display: none;
        
    </style>
</head>
<body>
<div class="divH"></div>
<div class="divT hide" onclick="ReturnTop();"><strong>返回顶部</strong></div>

<script src="./jq/jquery-1.9.1.min.js"></script>
<script>
    window.onscroll = function () 
        var current = $(window).scrollTop();
        if (current > 180)
            $(".divT").removeClass("hide");
        else 
            $(".divT").addClass("hide");
        
    ;

    function ReturnTop() 
        $(window).scrollTop(0);
    
</script>

网页右下角有个返回顶部按钮,模仿淘宝?window.scrollTop()方法

以上是关于js返回顶部小Demo的主要内容,如果未能解决你的问题,请参考以下文章

鼠标滚轮事件小demo

小程序-返回顶部组件

小程序-返回顶部组件

js网页返回页面顶部的小方法

第50天:scrollTo小火箭返回顶部

小程序:微信公众平台:小程序