Android 版 Chrome 可以滚动 div 吗?

发布于 2024-12-19 08:54:52 字数 210 浏览 0 评论 0原文

这是可滚动 div 内的一段文本。

我可以在 Mac 版 Chrome 中用两根手指滚动它。我可以用一根手指在 iPad 上滚动它。但是,我找不到任何方法在 Android 版 Chrome 中滚动它。

也许有使用触摸 API 的解决方法?

Here is a chunk of text inside a scrollable div.

I can scroll it with two fingers in Chrome for Mac. I can scroll it with one finger on my iPad. However, I can't find any way to scroll it in Chrome for Android.

Perhaps there's a work-around using the touch API?

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

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

发布评论

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

评论(3

仅冇旳回忆 2024-12-26 08:54:52

Android 版 Chrome 的另一个快速修复 (http://chris-barr.com/index.html php/entry/scrolling_a_overflowauto_element_on_a_touch_screen_device/

首先创建一个函数来检查它是否是触摸设备...

function isTouchDevice(){
  try {
    document.createEvent("TouchEvent");
    return true;
  } catch(e) {
    return false;
  }
}

then 函数使 div 可滚动

function touchScroll(id){
  if( isTouchDevice() ){ //if touch events exist...
    var el = document.getElementById(id);
    var scrollStartPos = 0;

    document.getElementById(id).addEventListener("touchstart", function(event){
      scrollStartPos = this.scrollTop + event.touches[0].pageY;
      event.preventDefault();
    }, false);

    document.getElementById(id).addEventListener("touchmove", function(event){
      this.scrollTop = scrollStartPos - event.touches[0].pageY;
      event.preventDefault();
    },false);
  }
}

...调用传递元素 id 的函数

touchScroll("divIdName");

Another quick fix for Chrome for Android (http://chris-barr.com/index.php/entry/scrolling_a_overflowauto_element_on_a_touch_screen_device/)

First create a function to check whether the it is a touch device...

function isTouchDevice(){
  try {
    document.createEvent("TouchEvent");
    return true;
  } catch(e) {
    return false;
  }
}

then function to make div scrollable

function touchScroll(id){
  if( isTouchDevice() ){ //if touch events exist...
    var el = document.getElementById(id);
    var scrollStartPos = 0;

    document.getElementById(id).addEventListener("touchstart", function(event){
      scrollStartPos = this.scrollTop + event.touches[0].pageY;
      event.preventDefault();
    }, false);

    document.getElementById(id).addEventListener("touchmove", function(event){
      this.scrollTop = scrollStartPos - event.touches[0].pageY;
      event.preventDefault();
    },false);
  }
}

... call the function passing the element id

touchScroll("divIdName");
笔芯 2024-12-26 08:54:52

在浏览有关此问题的错误报告时,我发现 这个 JavaScript 库 可以解决使用触摸事件的问题。据报道,它也已在 Honeycomb 中得到修复,因此希望人们在推出 Ice Cream Sandwich 版本后能够立即修复该问题。

While browsing through the bug reports on this issue, I found this JavaScript library that solves the problem using touch events. Also it is reportedly fixed in Honeycomb, so hopefully the fix will hit people as soon as they push builds of Ice Cream Sandwich.

静赏你的温柔 2024-12-26 08:54:52

3.0 之前的所有 Android 版本均存在溢出:滚动或自动错误(错误信息< /a>)。

对于那些使用 jQuery 的人来说,这里有一个快速修复:

function touchScroll(selector){
      var scrollStartPos = 0;
      $(selector).live('touchstart', function(event) {
        scrollStartPos = this.scrollTop + event.originalEvent.touches[0].pageY;
      });
      $(selector).live('touchmove', function(event) {
        this.scrollTop = scrollStartPos - event.originalEvent.touches[0].pageY;
      });
}

然后如果使用现代化:

if (Modernizr.touch) {
    touchScroll($('.myScrollableContent'))
}

但它并不理想,因为所有可触摸设备都会有这个。

如果您使用Phonegap,您可以执行以下操作(在phonegap初始化之后的某个位置):

if (window.device && device.platform=="Android" && parseInt(device.version) < 3){
    touchScroll($('.myScrollableContent'))
}

All android versions before 3.0 are bugged with overflow:scroll or auto (bug info).

For thoses using jQuery here is a quick fix :

function touchScroll(selector){
      var scrollStartPos = 0;
      $(selector).live('touchstart', function(event) {
        scrollStartPos = this.scrollTop + event.originalEvent.touches[0].pageY;
      });
      $(selector).live('touchmove', function(event) {
        this.scrollTop = scrollStartPos - event.originalEvent.touches[0].pageY;
      });
}

and then if using modernizr :

if (Modernizr.touch) {
    touchScroll($('.myScrollableContent'))
}

but it's not ideal because all touch-able devices will have this.

If you use Phonegap you can do (somewhere after phonegap inited):

if (window.device && device.platform=="Android" && parseInt(device.version) < 3){
    touchScroll($('.myScrollableContent'))
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文