html 回到顶部按钮

Posted

tags:

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


https://paulund.co.uk/how-to-create-an-animated-scroll-to-top-button-with-jquery


	<!--  Back to top button , BOOTSTRAP BASED -->
	<a class="fade-half back-to-top inner-link" href="#top">
		<div class="arr_cont"><img src="/wp-content/uploads/2018/10/up-1.png"></div>
		<div class="libreFont top_text">Scroll<br>to top</div>
	</a>


<script>
function backToTop() {
	jQuery( window).scroll(function() {
		if (jQuery(this).scrollTop() > 100) {
			console.log('window > 200') ;
			jQuery('.back-to-top').fadeIn();
		} else {
			jQuery('.back-to-top').fadeOut();
		}
	});
}

</script>


<style>
  
.back-to-top {
    position: fixed;
    /* top: 75px; */
    right: 0px;
    bottom: 40px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    height: 100px;
    width: 90px;
    padding: 5px 11px;
    word-break: break-word;
    display: none;
}

.arr_cont {
    border-radius: 50%;
    background: #3e4546;
    width: 62px;
    height: 55px;
    line-height: 50px;
}
  
</style>




以上是关于html 回到顶部按钮的主要内容,如果未能解决你的问题,请参考以下文章

html 回到顶部按钮

html css jquery 回到顶部按钮

点击按钮回到顶部

html css 返回顶部按钮位置怎么固定?

回到顶部

js要怎么实现回到顶部?