我有以下代码......
CSS
#container {
position:absolute;
height:100%;
width:100%;
top:0px;
left:0px;
overflow:scroll;
}
#content {
position:absolute;
height:5000px;
width:5000px;
top:0px;
left:0px;
background-image:url(http://subtlepatterns.com/patterns/purty_wood.png);
/* I used a background image so the scroll effect was more obvious */
}
#button {
position:absolute;
height:50px;
width:50px;
background-color:blue;
top:50px;
left:50px;
}
#item {
position:absolute;
height:250px;
width:750px;
background-color:yellow;
top:3000px;
left:2000px;
}
HTML
<div id="container">
<div id="content">
<div id="button"></div>
<div id="item"></div>
</div>
</div>
JQuery的
$('#button').click(function() {
$('#container').animate({
'scrollTop': '2990px'
},{duration: 1000, queue: false});
$('#container').animate({
'scrollLeft': '1990px'
},{duration: 1000, queue: false});
});
目前的工作原理是,当按下蓝色按钮时,容器会滚动到2990px顶部和1990px左侧,黄色项目进入视图(在其顶部和左侧留下10px间隙),这是什么我希望它能做到。
但是,我想知道我是否可以将其更改为公式,以便根据项目div的左侧和顶部位置设置scrollTop和scrollLeft值。允许我更改div的左侧和顶部位置,而不必担心编辑我的jquery。
我可以在脑海中看到这个公式,但只是不知道如何将它实现到jQuery中。公式应该类似......
'scrollTop' = (("#item" top) - 10px)
而不是
'scrollTop': '2990px'
和
'scrollLeft' = (("#item" left) - 10px)
而不是
'scrollLeft': '1990px'
因此它为#item div找到'top'和'left'的值,然后从它们中减去10个像素。
我只是不知道如何将这个公式写入我的jQuery,因为我还不是很熟练。
任何人都可以帮助我吗?
答案 0 :(得分:4)
使用.position()
或.offset()
来获取元素的位置。
$('#button').click(function() {
$('#container').animate({
'scrollTop': $('#item').position().top - 10
},{duration: 1000, queue: false});
$('#container').animate({
'scrollLeft': $('#item').position().left - 10
},{duration: 1000, queue: false});
});
jsFiddle:http://jsfiddle.net/cr2W9/2/