滚动条进行吟唱,某个元素滑动到顶部

<style>
    html {
        /*隐藏滚动条,当IE下溢出,仍然可以滚动*/
        -ms-overflow-style:none;
        /*火狐下隐藏滚动条*/
        overflow:-moz-scrollbars-none;
    }
    /*Chrome下隐藏滚动条,溢出可以透明滚动*/
    html::-webkit-scrollbar{width:0px}

</style>


document.getElementById('zhl_scroll').scrollTop =0

猜你喜欢

转载自blog.csdn.net/oliver_web/article/details/80224573
今日推荐