jQuery Mobile ScrollView仅适用于垂直滚动

时间:2012-09-23 22:18:11

标签: html5 css3 jquery-mobile scrollview

快速浏览一下似乎有一些关于缺乏垂直滚动的问题。我的问题恰恰相反,我有垂直滚动但没有水平。这是有问题的页面:

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

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

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

1 个答案:

答案 0 :(得分: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>

希望这会有所帮助。