我正在使用 Jquery 构建移动应用程序,我想显示一个带有大量文本的小弹出框。popup is 30% of the screen
我希望文本scrollable
带有移动小滚动条。
这是我的弹出窗口:
<div id="popup" class= "DivWithScroll">
<div class="txt">
<p id="text"> textData...textData...textData</p>
</div>
</div>
尝试使用此 CSS,但它windows scroller
- 不是我需要的
.DivWithScroll{
height:120px;
overflow:scroll;
overflow-x:hidden;
}
尝试使用插件iscroll.js
。看到了一些例子,但没有得到我想要的。
myScroll = new iScroll('popup');
有任何想法吗?