在同一页面的锚点链接之间实现平滑的滚动方法
1.载入 JQuery 库,
2.代码
$(document).ready(function() {
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^//, '') == this.pathname.replace(/^//, '') && location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) + ']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({
scrollTop: targetOffset
},
1000);
return false;
}
}
});
});
在各浏览器下都兼容适用,在 Opera 下表现怪异
1.载入 JQuery 库,
2.代码
$(document).ready(function() {
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^//, '') == this.pathname.replace(/^//, '') && location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) + ']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({
scrollTop: targetOffset
},
1000);
return false;
}
}
});
});
在各浏览器下都兼容适用,在 Opera 下表现怪异
63朵
0个