【发布时间】:2015-10-08 13:03:21
【问题描述】:
我有两个功能。我想将它们组合起来,这样当您从左到右(或反之亦然)移动时,它不会有延迟(就像向下滚动功能一样)。
$(function() {
$('a[href*=#]:not([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) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
$(function(){
$('a[href*=#]:not([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().left;
$('html,body').animate({scrollLeft: targetOffset}, 1000);
return false;
}
}
});
});
body{
padding:0;
margin:0;
overflow:hidden;
}
#Home{
position:relative;
width:100vw;
height:100vh;
background-color:#FFF;
}
#SectionLeft{
position:relative;
width:100vw;
height:100vh;
background-color:#989898;
float:left;
}
#SectionRight{
position:relative;
margin-left:100vw;
width:100vw;
height:100vh;
color:000;
background-color:#838383;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<div id="Home">
<a href="#SectionLeft">Go Down</a>
</div>
<div id="SectionLeft">
<a href="#SectionRight">Go Right</a>
</div>
<div id="SectionRight">
<a href="#SectionLeft">Go Left</a>
</div>
【问题讨论】:
-
在javascript中查找setTimeout
-
等等,你要不要延迟?你在说什么向下滚动功能?
-
@AkshayKhandelwal 这与我如何理解它的问题无关
-
正如您所见,当您单击“向下”时,它会立即转到链接中指向的 div。但是,当单击“向右走”和“向左走”时,会出现延迟,我不确定它来自哪里。我想消除此延迟,以便它可以与用户在页面中上下移动时相同。我希望你现在能更好地理解我。
-
您首先在此元素上调用 scroll top ,即使它滚动到相同的值(意味着垂直滚动到 0)也需要一秒钟才能完成。
animate()方法使用 fx 队列
标签: javascript jquery jquery-animate smooth-scrolling