我目前正在使用css技巧的平滑滚动脚本。
我遇到的问题是我使用了链接到onclick链接到锚元素。
你可以看到它here。问题是脚本没有找到我需要的东西,脚本找不到顶部的链接(div),所以不要顺利滚动到锚点。而关于,服务,联系链接(绿色东西内的文本)滚动顺畅。
我是完整的jquery和javascript noob,并且不知道如何更改脚本以包含onclick div或制作脚本以使其顺利滚动到锚点。
我需要脚本从div链接和文本链接顺利滚动,或者我需要一个与div链接一起使用的重复脚本(2个执行文本链接和div链接的脚本 - 我只使用atm的脚本文本)
<script>
$(document).ready(function() {
function filterPath(string) {
return string
.replace(/^\//,'')
.replace(/(index|default).[a-zA-Z]{3,4}$/,'')
.replace(/\/$/,'');
}
var locationPath = filterPath(location.pathname);
var scrollElem = scrollableElement('html', 'body');
$('a[href*=#]').each(function() {
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/,'') ) {
var $target = $(this.hash), target = this.hash;
if (target) {
var targetOffset = $target.offset().top;
$(this).click(function(event) {
event.preventDefault();
$(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
location.hash = target;
});
});
}
}
});
// use the first element that is "scrollable"
function scrollableElement(els) {
for (var i = 0, argLength = arguments.length; i <argLength; i++) {
var el = arguments[i],
$scrollElement = $(el);
if ($scrollElement.scrollTop()> 0) {
return el;
} else {
$scrollElement.scrollTop(1);
var isScrollable = $scrollElement.scrollTop()> 0;
$scrollElement.scrollTop(0);
if (isScrollable) {
return el;
}
}
}
return [];
}
});
</script>
答案 0 :(得分:0)
我不知道你是否使用像jQuery这样的javascript框架。对于像这样的网站,我总是使用jQuery插件'Localscroll'。它总是可以很好地跨浏览器。
您可以在此处查看该插件的文档: http://flesler.blogspot.com/2007/10/jquerylocalscroll-10.html
它非常易于使用。
祝你好运!答案 1 :(得分:0)
你可以在导航中使用锚点代替div,现在你正在做
<div id="whatever" onclick="window.location=#portfolio">portfolio</div>
但这不是语义,它不会按照你想要的方式工作,所以这是双倍的不好。使用
<a id="whatever" href="#portfolio" style="display:block">portfolio</a>
那么来自css技巧的代码应该可以工作......如果它是可点击的,它可能应该是一个按钮或一个锚。
你身体中的锚标签按预期工作,顺便说一句......