由链接激活的滑动面板

时间:2009-06-22 18:49:03

标签: jquery animation scroll slide

我有三个链接。我希望每个链接控制一个单独的DIV(我猜在容器DIV中)。因此,当您打开页面时,您有DIV-1,然后您可以单击DIV-2或3的链接,视图将滑动或滚动到该DIV。

这怎么可能在jQuery中?我试过滚动无效。

提前致谢,

斯图

1 个答案:

答案 0 :(得分:0)

在第一个Child-Cell边缘使用.animate()方法。

类“单元格”由200x200个盒子组成,全部向左浮动。 ID“容器”也是200x200,隐藏溢出。您可以指定三个链接来动画第一个具有“单元格”类的div的左边距,这将根据您想要的数量向左或向右移动所有三个。

Link1 - >第一个Div保证金左= 0;
Link2 - >第一个Div保证金左= -200;
Link3 - >第一个Div保证金左= - 400;


更新:以下代码已更新,以回应评论中的后续问题。

我已将细胞封入另一个div中。这个div在容器内。我们将操纵这些单元所在的div的左边距,而不是操纵第一个单元格的左边距。试一试 - 我已经尝试过并获得了理想的结果。

<style type="text/css">
  div#container { width:200px;height:200px;overflow:hidden; }
  div.cells { width:600px;height:200px;}
  div.cell { float:left;width:200px;height:200px;margin:0;padding:0; }
  div.cell p {margin:0;padding:0;}
</style>

<ul>
  <li><a href="#" class="box-mover">Show Box 1</a></li>
  <li><a href="#" class="box-mover">Show Box 2</a></li>
  <li><a href="#" class="box-mover">Show Box 3</a></li>
</ul>

<div id="container">
  <div class="cells">
    <div class="cell" style="background:#f1f1f1;">
      <p>Cell 1</p>
    </div>
    <div class="cell" style="background:#cc0000;color:#ffffff;">
      <p>Cell 2</p>
    </div>
    <div class="cell" style="background:#f1f1f1;">
      <p>Cell 3</p>
    </div>
  </div>
</div>

<script type="text/javascript">
  $(document).ready(function(){

    $("a.box-mover:eq(0)").click(function(event){
      event.preventDefault();
      $("div.cells").animate({"marginLeft": "0px"}, "slow");
    });
    $("a.box-mover:eq(1)").click(function(event){
      event.preventDefault();
      $("div.cells").animate({"marginLeft": "-200px"}, "slow");
    });
    $("a.box-mover:eq(2)").click(function(event){
      event.preventDefault();
      $("div.cells").animate({"marginLeft": "-400px"}, "slow");
    });

  });
</script>