以下是我使用名为jRespond的库解决此问题的方法:
将此CSS添加到您的模态中
@media (max-wIDth: $screen-xs-max) { .modal-dialog { .modal-content { -webkit-overflow-scrolling: touch; overflow-y: auto; } }}
将jRespond添加到您的应用程序
https://github.com/ten1seven/jRespond/edit/master/js/jRespond.js
将以下代码添加到main.Js脚本中
/* This code handles the responsive modal for mobile */ var jRes = jRespond([{ label: 'handheld',enter: 0,exit: 767 }]); jRes.addFunc({ breakpoint: 'handheld',enter: function() { $('.modal-content').CSS('max-height',$(window).height()); $(window).on('orIEntationchange',function () { $('.modal-content').CSS('max-height',$(window).height()); }); },exit: function () { $('.modal-content').CSS('max-height',""); $(window).off('orIEntationchange'); } });总结
以上是内存溢出为你收集整理的Android上的Bootstrap 3长模态滚动背景全部内容,希望文章能够帮你解决Android上的Bootstrap 3长模态滚动背景所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)