jquery 监听所有锚点链接实现平滑移动
Posted 鱼塘总裁
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 监听所有锚点链接实现平滑移动相关的知识,希望对你有一定的参考价值。
jquery 监听所有锚点链接实现平滑移动,地址栏上不会改变链接地址
//监听所有锚点链接实现平滑移动 $(‘a[href*=#],area[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; //为提升用户体验,做出算法改进 start var clientHeight = document.body.clientHeight; //浏览器可视高度 targetOffset = targetOffset-(clientHeight/2)+100; //end $(‘html,body‘).stop(true).animate({ scrollTop: targetOffset }, 1000); return false; } } });
以上是关于jquery 监听所有锚点链接实现平滑移动的主要内容,如果未能解决你的问题,请参考以下文章