Javascript / css:使用按钮垂直滚动页面

发布于 2024-12-02 01:32:07 字数 280 浏览 0 评论 0原文

我实际上有一个具有静态高度和 100% 宽度的 div。目前这个 div 有 overflow:auto 所以有一个垂直滚动条。

但对于这个项目来说,这个 div 必须没有任何滚动条。所以我有两个按钮 - 一个位于 div 的顶部,一个位于末尾用于滚动。但到目前为止,我无法找到使用此按钮使 div 滚动(几个像素或鼠标悬停时滚动)的解决方案。

(我通常使用 jQuery,但无法使用它的 scrollTop()-Method)

所以请帮助我!

I actually have a div with a staticheight and 100% width. Currently this div has overflow:auto so there is a vertical scrollbar.

But for this project it's necessary to have this div without any scrollbars. So I have two buttons - one at the div's top and one at the end for scrolling. But until now I was unable to find a solution to make the div scrolling (for several px OR scrolling while mouseover) using this buttons.

(I'm commonly using jQuery, but weren't able to use it's scrollTop()-Method)

So please help me!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

末が日狂欢 2024-12-09 01:32:07

我希望 scrollTop 正是您所寻找的(尽管我反对这种用户体验,除非有一个真正充分的理由)这个非标准)。

它对我有用(live copy):

CSS:

#theDiv {
  height: 10em;
  overflow: hidden;
  border: 1px solid #ddd;
}

HTML:

<input id="btnDown" type="button" value="Down">
<input id="btnUp"   type="button" value="Up">
<div id="theDiv"></div>

JavaScript w/jQuery:

jQuery(function($) {
  var theDiv;

  theDiv = $("#theDiv");
  fill();

  $("#btnDown").click(function() {
    theDiv.scrollTop(theDiv.scrollTop() + 10);
  });
  $("#btnUp").click(function() {
    var top = Math.max(theDiv.scrollTop() - 10, 0);
    theDiv.scrollTop(top);
  });

  function fill() {
    var n, s;

    s = "Line 0";
    for (n = 1; n < 20; ++n) {
      s += "<br>Line " + n;
    }
    theDiv.html(s);
  }
});

I'd expect scrollTop to be just what you were looking for (though I would argue against this user experience barring a really good reason to be this non-standard).

It works for me (live copy):

CSS:

#theDiv {
  height: 10em;
  overflow: hidden;
  border: 1px solid #ddd;
}

HTML:

<input id="btnDown" type="button" value="Down">
<input id="btnUp"   type="button" value="Up">
<div id="theDiv"></div>

JavaScript w/jQuery:

jQuery(function($) {
  var theDiv;

  theDiv = $("#theDiv");
  fill();

  $("#btnDown").click(function() {
    theDiv.scrollTop(theDiv.scrollTop() + 10);
  });
  $("#btnUp").click(function() {
    var top = Math.max(theDiv.scrollTop() - 10, 0);
    theDiv.scrollTop(top);
  });

  function fill() {
    var n, s;

    s = "Line 0";
    for (n = 1; n < 20; ++n) {
      s += "<br>Line " + n;
    }
    theDiv.html(s);
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文