向下滚动时,我正在使用以下 javascript 拉入“返回顶部”按钮。
这在 Firefox 上很有效 - 但在 Chrome/Safari 上无效。
jQuery(document).ready(function(){
jQuery("#totop").hide();
jQuery(window).scroll(function(){
if (jQuery(this).scrollTop() > 100) {
jQuery('#totop').fadeIn();
} else {
jQuery('#totop').fadeOut();
}
});
jQuery('#totop').click(function(){
jQuery("html, body").animate({ scrollTop: 0 }, 660, 'easeInOutExpo');
return false;
});
});
演示网站http://demov3.joostrap.com
我尝试过使用 noConflict。