html锚点链接过渡效果,锚点跳转的过渡效果
html代码转链接jq实现:
$(function () {
$(‘a[href*=#],area[href*=#]‘).click(function () {
console.log(this.pathname)
if (place(/^\//, ‘‘) == place(/^\//, ‘‘) && 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;
}
}
});
});

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。