我有以下旋转木马。
<ons-carousel swipeable overscrollable auto-scroll var="news_items_carousel" style="height: 90%; overflow:scroll; z-index:2 !IMPORTANT">
其中的每个轮播项目都有一张图片和一些长文本。
一切都在浏览器上运行良好但在Android手机(三星S4)上我无法向下滚动以查看每个<ons-carousel-item>
中的内容。当我刷屏幕时,旋转木马实际上从一个移动到下一个,所以我猜它的工作,只是不向下滚动以查看其余的内容。希望我能说清楚。
迫切需要帮助。感谢
答案 0 :(得分:1)
将您的内容包含在<ons-scroller>
内。基本上是这样的:
<ons-carousel>
<ons-carousel-item>
<ons-scroller>
<img src="" /><p>{{longText}}</p>
</ons-scroller>
</ons-carousel-item>
</ons-carousel>