码迷,mamicode.com
首页 > 其他好文 > 详细

锚点跳转滑动效果

时间:2016-11-08 16:42:38      阅读:375      评论:0      收藏:0      [点我收藏+]

标签:click   false   location   slice   length   console   anim   没有   ati   

$(‘a[href*="#"],area[href*="#"]‘).click(function() {
console.log(1);
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;
}
}
});
//且网页没有后缀

锚点跳转滑动效果

标签:click   false   location   slice   length   console   anim   没有   ati   

原文地址:http://www.cnblogs.com/huangqiming/p/6043325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!