3

乍一看,似乎有一些关于缺少垂直滚动的问题。我的问题恰恰相反,我有垂直滚动但没有水平滚动。这是有问题的页面:

http://bgmobile.sytes.net/dogs/threegenpedigree/1

我一定错过了一些基本的东西......但我的 JS/CSS-Fu 并不强大。

编辑:我刚刚在scrollview.js 中注意到它添加了值为'y' 的数据滚动属性。我已将其更改为“true”,但仍然无法解决。在检查默认值后,我还从 scrollview() 调用中删除了 opts 参数,但它仍然只能垂直滚动。

4

1 回答 1

0

这是样式问题添加CSS如下

     .containerstyle{

      }
      .containerstyle > .ui-scrollview-view {
       width: 1300px;/*specify the width you want ,
       put a larger value than your screen resolution*/           
      }

并更改 div 的代码如下

      <div data-scroll="true" class="containerstyle"></div>

希望这有帮助。

于 2012-10-04T16:47:13.293 回答