gpt4 book ai didi

javascript - 底部工作表中的 Bootstrap 模态

转载 作者:行者123 更新时间:2023-11-27 23:15:45 25 4
gpt4 key购买 nike

在我的上一个元素中,我为网站使用了 Material Design,现在我切换Bootstrap。现在我正在寻找一种方法来在屏幕底部为用户创建 Bootstrap 模式显示操作。它们的行为仍然与常规模式相同。我正在寻找一个类似于 Bottom Sheet Modal 的模式物化的。 Bootstrap 可以做到这一点吗?或者有现有的方法来做到这一点?

最佳答案

是的,是的,但是您需要稍微更改一下模态 css:

注意:您需要做的唯一更改是为元素添加样式 class="modal-dialog"

<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
<h2>Modal Example</h2>
<!-- Trigger the modal with a button -->
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>

<!-- Modal -->
<div class="modal fade" id="myModal" role="dialog" >
<div class="modal-dialog" style="position:absolute;bottom:0;margin:0;width:100%;">

<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>

</div>
</div>

</div>

</body>
</html>

示例来自:https://www.w3schools.com/bootstrap/bootstrap_modal.asp

关于javascript - 底部工作表中的 Bootstrap 模态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43289352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com