我有app使用angular-bootstrap和ionicFramework。 问题出在angular-bootstrap $ modal元素中。我希望它有垂直滚动条,但在ionic.css中有样式:
::-webkit-scrollbar {
display: none;
}
因此,模态中没有滚动条。 我试图在很多方面解决这个问题,但现在我很困惑。
答案 0 :(得分:5)
将模态html组件放入离子含量
答案 1 :(得分:2)
请尝试使用模式中的ion-scroll
组件。例如:
<ion-scroll zooming="true" direction="xy" style="width:500px;height:500px">
<!-- Put your content here -->
</ion-scroll>