html 仅在移动设备上显示模态窗口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 仅在移动设备上显示模态窗口相关的知识,希望对你有一定的参考价值。
<!-- Modal -->
<div class="modal fade mobileModalContainer" id="memberModal" tabindex="-1" role="dialog" aria-labelledby="memberModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span>
</button>
<h4 class="modal-title" id="memberModalLabel">Mobile Device Detected</h4>
</div>
<div class="modal-body">
<p>Please scroll to the sides to see more information about these properties</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
JS:
<script>
jQuery(document).ready(function () {
if ( jQuery(window).width() < 768) {
jQuery('#memberModal').modal('show');
}
});
</script>
CSS:
/* Hidden by default */
.mobileModalContainer { display: hidden; }
以上是关于html 仅在移动设备上显示模态窗口的主要内容,如果未能解决你的问题,请参考以下文章
不希望模态视图在键盘显示上向上移动
Blazor 仅在移动设备上显示组件
仅在移动设备上显示的字体真棒[重复]
在移动设备中选择视图,例如下拉菜单,而不是模态[关闭]
仅在移动设备上的响应式 CSS 样式
轮播/幻灯片仅在移动设备上