引导程序使用什么使背景被动 [英] what does bootstrap use to make backdrop passive

查看:67
本文介绍了引导程序使用什么使背景被动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试仅使用CSS和jQuery而不使用Bootstrap来创建类似Bootstrap的模式.但是启动模态后,背景仍然有效.我该怎么做才能使其变为被动状态,以便在滚动时仅滚动模态内容,并且如果在模态窗口之外单击,它就会关闭?请分享您的建议.下面是我的代码段.

I am trying to create a Bootstrap-like modal using only CSS and jQuery, without Bootstrap. But after launching the modal, the backdrop is still active. What can I do to make it passive so that while scrolling, only the modal content scrolls, and if one clicks outside the modal window, it gets closed? Please share your suggestions. Below is my code snippet.

$(document).ready(function() {
	$(".modal").hide();
	let flag = 0;//hidden
	$("#launch-button").click(function(){
		$(".modal").slideDown(200, function() {
			$(".bg-body").click(function(){
			$(".modal").slideUp(200);
			flag = 0;//hidden
			$(".bg-body").css("opacity","initial");
	});
		});
		flag = 1;//visible
		$(".bg-body").css("opacity","0.3");
	});
	$("#save-btn").addClass("close-button")
	$(".close-button").click(function(){
		$(".modal").slideUp(200);
		flag = 0;//hidden
		$(".bg-body").css("opacity","initial");
	});
	
});

* {
	box-sizing: border-box;
	font-family: Lato, sans-serif;
}

.overlay{
	/*background-color: #000;
	opacity: 0.1;*/
	/*display: flex;
	justify-content: center;
	align-items: center;*/
}

.modal{
	width: 34%;
	position:fixed;
	left: 33vw;
	border: 1px solid #b0b0b0;
	border-radius: 5px;
	padding:2vh 2vw;
}

.modal-header{
	display: flex;
	align-items: center;
}

#close-icon{
	margin-left: auto;
}

.modal-body{
	margin: 0;
	padding-top: 2vh;
	padding-bottom: 2vh;
}

.modal-footer{
	display:flex;
	align-items: center;
	justify-content: flex-end;
}
#close-button{
	margin:1vh 0.8vw;
}

button{
	font-size: 1rem;
	background-color: transparent;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 1vh 0.8vw;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta  name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
	<link rel="stylesheet" type="text/css" href="index.css">
	<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
	<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
	<title>modal</title>
</head>
<body>
	<div class="bg-body">
		<p>
			Click here to launch a sample modal made without using Bootstrap. 
		</p>
		<div id="launch">
			<button id="launch-button">
				Launch Sample Modal
			</button>
		</div>
	</div>
	<div class="overlay">
		<div class="modal">
			<div class="modal-header">
				<h3 class="">Modal Title</h3>
				<button class="close-button" id="close-icon"><i class="fas fa-times"></i></button>
			</div>
			<hr>
			<div class="modal-body">
				Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
				tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
				quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
				consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
				cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
				proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
			</div>
			<hr>
			<div class="modal-footer">
				<button class="close-button" id="close-button">Close</button>
				<button id="save-btn">Save changes</button>
			</div>
		</div>
	</div>



	<script src="jquery-3.3.1.min.js"></script>
	<script src="index.js"></script>
</body>
</html>

推荐答案

通常使覆盖图覆盖屏幕:

It usually makes the overlay cover the screen:

$(document).ready(function() {
  var $overlay = $('.overlay'),
    $modal = $(".modal"); // put these in vars as you use them multiple times so it will be better performance

  $("#launch-button").on('click', function() {
    // show overlay and modal
    $overlay.show();
    $modal.slideDown(200);
  });

  // hide overlay and modal when overlay or close buttons clicked
  $overlay.on('click', hideModal);
  $('.close-button').on('click', hideModal);

  $modal.on('click', function(e) {
    // stop click events on modal bubbling up to overlay (stops the overlay click event firing when modal is clicked on)
    e.stopPropagation();
  });

  function hideModal() {
    // hide modal and overlay
    $modal.slideUp(200, function() {
      $overlay.hide();
    });
  }
});

* {
  box-sizing: border-box;
  font-family: Lato, sans-serif;
}

.overlay {
  /* make overlay cover whole body */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  overflow: auto;
}

.modal {
  /* start off hidden with css so it doesn't flash when loading */
  display: none;
  width: 34%;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  padding: 2vh 2vw;
  background: white;
  /* centre modal may need a media query to remove transform on smaller screen heights */
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

.modal-header {
  display: flex;
  align-items: center;
}

#close-icon {
  margin-left: auto;
}

.modal-body {
  margin: 0;
  padding-top: 2vh;
  padding-bottom: 2vh;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#close-button {
  margin: 1vh 0.8vw;
}

button {
  font-size: 1rem;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 1vh 0.8vw;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  <link rel="stylesheet" type="text/css" href="index.css">
  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
  <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
  <title>modal</title>
</head>

<body>
  <div class="bg-body">
    <p>
      Click here to launch a sample modal made without using Bootstrap.
    </p>
    <div id="launch">
      <button id="launch-button">
				Launch Sample Modal
			</button>
    </div>
  </div>
  <div class="overlay">
    <div class="modal">
      <div class="modal-header">
        <h3 class="">Modal Title</h3>
        <button class="close-button" id="close-icon"><i class="fas fa-times"></i></button>
      </div>
      <hr>
      <div class="modal-body">
        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
        in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
      </div>
      <hr>
      <div class="modal-footer">
        <button class="close-button" id="close-button">Close</button>
        <button id="save-btn">Save changes</button>
      </div>
    </div>
  </div>



  <script src="jquery-3.3.1.min.js"></script>
  <script src="index.js"></script>
</body>

</html>

这篇关于引导程序使用什么使背景被动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆