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相关的知识,希望对你有一定的参考价值。
//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的主要内容,如果未能解决你的问题,请参考以下文章