html Bottone back to top che比较quando torniamo su nella pagina。 Uso font awesome per il simbolo #toTo

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Bottone back to top che比较quando torniamo su nella pagina。 Uso font awesome per il simbolo #toTo相关的知识,希望对你有一定的参考价值。

.toTop {
	position: fixed;
	bottom: 30px;
	right: 60px;
	font-size: 30px;
	background-color: #eee;
	color: #e56b4b;
	padding: 0 15px;
	line-height: 45px;
	display: none;
}
.toTop:hover {
	background-color: #e56b4b;
	color: #eee;
}
//animazione generica dei link in base alle ancore
var $root = $('html, body');
var extra = 0;
$('.animate').click(function() {
		var href = $.attr(this, 'href');
		$root.animate({
			scrollTop: $(href).offset().top - extra
		}, 700, function () {
			window.location.hash = href;
		});
		return false;
});

//faccio comparire/scomparire il pulsante
$(window).scroll(function() {
    if ($(this).scrollTop() >= 300) {
        $('#scroll_top').stop().fadeIn(500);
    } else {
        $('#scroll_top').stop().fadeOut(500);
    }
});
<!-- da mettere prima della chiusura del body -->
<a href="#top" id="scroll_top" class="toTop animate">
  <i class="fa fa-angle-up" aria-hidden="true"></i>
</a>

以上是关于html Bottone back to top che比较quando torniamo su nella pagina。 Uso font awesome per il simbolo #toTo的主要内容,如果未能解决你的问题,请参考以下文章

JS 回到顶端 back to top

JavaScript---快速回到页面顶部

css Genesis的简单而流畅的Back-To-Top按钮

如何从 Material UI 为我的应用中的 React 添加带有 Back to Top 按钮的 AppBar?

css 顶部按钮 - http://janhoek.com/a-simple-smooth-back-to-top-button-for-genesis/

人人必知的10个jQuery小技巧