原生JavaScript實現模態框的示例代碼

原生js封裝模態框

最近需要一個模態框,然後一種是提示類的,一種是確認類型,我就想著再網上找一個然後修改一下,結果找到瞭,但是不深特別合適,我再次基礎上在做瞭修改,對功能有所增強,純原生寫的,沒有任何依賴性,適應性比較強,值copy即可使用。

配置:可以在實例化時對options進行參數設置,達到自己想要的效果

示例效果

代碼

HTML部分

<head>
		<meta charset="utf-8">
	 
		<title>彈出框</title>
	</head>

CSS部分

.mask {
			position: fixed;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			/*  遮罩層顏色 */
			background: #bfbfbf;
			opacity: 0.5;
		}

		.modal {
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 400px;
			background-color: aliceblue;
			border-radius: 5px;
			z-index: 99;
			border: 1px solid rgba(0, 0, 0, 0.2);
		}

		.modal .modalTitle {
			height: 50px;
			box-sizing: content-box;
			display: flex;
			align-items: center;
			justify-content: space-between;
			border-bottom: 2px solid #eeeeee;
			padding: 0 16px;
		}

		.modalTitle .closeModal {
			width: 20px;
			height: 20px;
			border-radius: 5px;
			line-height: 20px;
			text-align: center;
			font-size: 14px;
			cursor: pointer;
			background-image: url('https://typroas.oss-cn-hangzhou.aliyuncs.com/typroaImg/close.png');
			background-size: 100% 100%;

		}


		.modalTitleText {
			margin: 0 auto;
			font-size: 17px;
		}



		.modal .main {
			box-sizing: border-box;
			padding: 16px;
			height: calc(100% - 80px);
		}

		.modal .footer {
			height: 50px;
			text-align: right;
			box-sizing: border-box;
			padding-right: 16px;
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}

		.footer .btnLeft,
		.footer .btnRight {
			width: 120px;
			height: 35px;
			text-align: center;
			line-height: 30px;
			border: none;
			border-radius: 0.2rem;
			margin-left: 8px;
			background-color: #dddddd;
		}

		.footer .btnOk {
			width: 120px;
			height: 35px;
			text-align: center;
			line-height: 30px;
			border: none;
			border-radius: 0.3rem;
			background-color: #1d73d3;
			margin: 0 auto;
			font-size: 17px;
			color: white;
		}

		.footer .btnLeft:hover,
		.footer .btnRight:hover {
			background-color: #1D73D3;
			color: #FFFFFF;
		}

JS部分

/**
			 * 彈出框
			 * @param {Object} options 彈出框配置項
			 */
			function Modal(options) {
				options = Object.assign({
					lateRelease: options.lateRelease ? options.lateRelease : false, //是否開啟延時關閉
					lateReleaseTime: options.lateReleaseTime ? options.lateReleaseTime : 5000, // 延時關閉時間
					isCreateOpen: options.isCreateOpen ? options.isCreateOpen : true, //是否創建完畢後就打開彈出框
					type: options.type ? options.type : 'hint', // hint:提示框 confirm:確認框
					isTopRightcancel: true, // 是否需要右上角小x取消按鈕
					modalTitle: options.modalTitle ? options.modalTitle : '溫馨提示',
					backgroundColor: options.backgroundColor ? options.backgroundColor : '#fff', // 背景顏色
					mask: options.mask ? options.mask : true, //是否顯示遮罩層,
					content: options.content ? options.content : '', //彈框內容
					cancelText: options.cancelText ? options.cancelText : '取消', //取消按鈕文字
					okText: options.okText ? options.okText : '確認', // 確認按鈕文字,
					width: options.width ? options.width : 500, //對話框的寬度
					onCancel: options.onCancel ? options.onCancel : this.closeModal, //取消按鈕回調,默認是關閉彈框
					cancelCallBack: options.cancelCallBack ? options.cancelCallBack : () => {
						console.log('你點擊瞭取消');
					}, //取消回調
					onOkCallBack: options.onOkCallBack ? options.onOkCallBack : () => {
						console.log('你點擊瞭確認');
					}, // 確認按鈕回調
				}, options);
				this.options = options;
				// 創建遮罩層
				function createMask() {
					let mask = document.createElement('div')
					mask.className = 'mask';
					document.body.appendChild(mask);
				}
			
				// 創建modal彈框
				function createModal(type) {
			
					let modal = document.createElement('div');
					let modalTitleDom = document.createElement('div');
					let main = document.createElement('div');
					let footer = document.createElement('div');
					let btnLeft;
					let btnRight;
					let btnOk;
					let closeIcon;
					if (type == 'hint') {
						btnOk = document.createElement('button');
						btnOk.className = 'btnOk';
					} else if (type == 'confirm') {
						btnLeft = document.createElement('button');
						btnLeft.className = 'btnLeft';
						btnRight = document.createElement('button');
						btnRight.className = 'btnRight';
					}
			
					let {
						modalTitle,
						content,
						cancelText,
						okText,
						width,
						onCancel,
						onOkCallBack,
						backgroundColor,
						cancelCallBack,
						isTopRightcancel,
						isCreateOpen
					} = this.options;
			
					modal.className = 'modal';
					modal.style.width = width + 'px';
					modal.style.backgroundColor = backgroundColor;
			
					modalTitleDom.className = 'modalTitle'
					modalTitleDom.innerHTML = `<span class="modalTitleText">${modalTitle}</span>`;
					if (isTopRightcancel) {
						closeIcon = document.createElement('span');
						closeIcon.addEventListener('click', closeModal.bind(this));
						closeIcon.className = 'closeModal';
						modalTitleDom.appendChild(closeIcon);
					}
			
			
			
					main.className = 'main';
					main.innerHTML = content;
					footer.className = 'footer';
					if (type == 'hint') {
						btnOk.innerHTML = '確認';
						footer.appendChild(btnOk);
						onCancel = onCancel ? onCancel : this.closeModal;
						btnOk.addEventListener('click', onCancel.bind(this));
					} else if (type == 'confirm') {
						btnLeft.innerHTML = '取消';
						btnRight.innerHTML = '確認';
						footer.appendChild(btnLeft);
						footer.appendChild(btnRight);
			
						onCancel = onCancel ? onCancel : this.closeModal;
						btnLeft.addEventListener('click', onCancel.bind(this));
						btnRight.addEventListener('click', onOkCallBack);
					}
			
					modal.appendChild(modalTitleDom);
					modal.appendChild(main);
					modal.appendChild(footer);
					modal.className = 'modal';
					this.options.onCancel = onCancel.bind(this);
					document.body.appendChild(modal);
				}
			
				// 關閉彈框
				function closeModal(ev) {
					options.cancelCallBack();
					let target = ev ? ev.path[2] : document.getElementsByClassName('modal')[0];
					let {
						mask
					} = this.options
					mask ? document.body.removeChild(document.querySelector('.mask')) : null;
					document.body.removeChild(target);
				}
			
				/**
				 * 當設置默認打開的時候可手動調用該方法
				 */
				function openModal() {
					this.init();
				}
			
				// 初始化
				function init() {
					let {
						mask
					} = this.options
					mask ? createMask() : null
					this.createModal(this.options.type);
				}
			
				Modal.prototype.init = init;
				Modal.prototype.createModal = createModal;
				Modal.prototype.closeModal = closeModal;
				Modal.prototype.openModal = openModal;
				// 執行初始化方法
				if (this.options.isCreateOpen) {
					this.init();
					if (this.options.lateRelease) {
						setTimeout(() => {
							let modal = document.getElementsByClassName('modal')[0];
							if(modal){
								this.options.onCancel();
							}
							
						}, this.options.lateReleaseTime);
					}
				}
			}
			

			document.getElementById("btn").addEventListener('click', () => {
				let modal = new Modal({
					lateRelease: true,
					modalTitle: '我是第二個',
					content: `<p>日常開發中,秒殺下單、搶紅包等等業務場景,都需要用到分佈式鎖。而Redis非常適合作為分佈式鎖使用。本文將分七個方案展開,跟大傢探討Redis分佈式鎖的正確使用方式。如果有不正確的地方,歡迎大傢指出哈,一起學習一起進步。</p>`
				})
				// modal.closeModal();
				// modal.openModal();

			})

完整代碼

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
	 
		<title>彈出框</title>
	</head>
	<style type="text/css">
		.mask {
			position: fixed;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
			/*  遮罩層顏色 */
			background: #bfbfbf;
			opacity: 0.5;
		}

		.modal {
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 400px;
			background-color: aliceblue;
			border-radius: 5px;
			z-index: 99;
			border: 1px solid rgba(0, 0, 0, 0.2);
		}

		.modal .modalTitle {
			height: 50px;
			box-sizing: content-box;
			display: flex;
			align-items: center;
			justify-content: space-between;
			border-bottom: 2px solid #eeeeee;
			padding: 0 16px;
		}

		.modalTitle .closeModal {
			width: 20px;
			height: 20px;
			border-radius: 5px;
			line-height: 20px;
			text-align: center;
			font-size: 14px;
			cursor: pointer;
			background-image: url('https://typroas.oss-cn-hangzhou.aliyuncs.com/typroaImg/close.png');
			background-size: 100% 100%;

		}


		.modalTitleText {
			margin: 0 auto;
			font-size: 17px;
		}



		.modal .main {
			box-sizing: border-box;
			padding: 16px;
			height: calc(100% - 80px);
		}

		.modal .footer {
			height: 50px;
			text-align: right;
			box-sizing: border-box;
			padding-right: 16px;
			display: flex;
			align-items: center;
			justify-content: flex-end;
		}

		.footer .btnLeft,
		.footer .btnRight {
			width: 120px;
			height: 35px;
			text-align: center;
			line-height: 30px;
			border: none;
			border-radius: 0.2rem;
			margin-left: 8px;
			background-color: #dddddd;
		}

		.footer .btnOk {
			width: 120px;
			height: 35px;
			text-align: center;
			line-height: 30px;
			border: none;
			border-radius: 0.3rem;
			background-color: #1d73d3;
			margin: 0 auto;
			font-size: 17px;
			color: white;
		}

		.footer .btnLeft:hover,
		.footer .btnRight:hover {
			background-color: #1D73D3;
			color: #FFFFFF;
		}
	</style>
	<body>

		<button type="button" id="btn">彈出</button>

		<script type="text/javascript">
			/**
			 * 彈出框
			 * @param {Object} options 彈出框配置項
			 */
			function Modal(options) {
				options = Object.assign({
					lateRelease: options.lateRelease ? options.lateRelease : false, //是否開啟延時關閉
					lateReleaseTime: options.lateReleaseTime ? options.lateReleaseTime : 5000, // 延時關閉時間
					isCreateOpen: options.isCreateOpen ? options.isCreateOpen : true, //是否創建完畢後就打開彈出框
					type: options.type ? options.type : 'hint', // hint:提示框 confirm:確認框
					isTopRightcancel: true, // 是否需要右上角小x取消按鈕
					modalTitle: options.modalTitle ? options.modalTitle : '溫馨提示',
					backgroundColor: options.backgroundColor ? options.backgroundColor : '#fff', // 背景顏色
					mask: options.mask ? options.mask : true, //是否顯示遮罩層,
					content: options.content ? options.content : '', //彈框內容
					cancelText: options.cancelText ? options.cancelText : '取消', //取消按鈕文字
					okText: options.okText ? options.okText : '確認', // 確認按鈕文字,
					width: options.width ? options.width : 500, //對話框的寬度
					onCancel: options.onCancel ? options.onCancel : this.closeModal, //取消按鈕回調,默認是關閉彈框
					cancelCallBack: options.cancelCallBack ? options.cancelCallBack : () => {
						console.log('你點擊瞭取消');
					}, //取消回調
					onOkCallBack: options.onOkCallBack ? options.onOkCallBack : () => {
						console.log('你點擊瞭確認');
					}, // 確認按鈕回調
				}, options);
				this.options = options;
				// 創建遮罩層
				function createMask() {
					let mask = document.createElement('div')
					mask.className = 'mask';
					document.body.appendChild(mask);
				}
			
				// 創建modal彈框
				function createModal(type) {
			
					let modal = document.createElement('div');
					let modalTitleDom = document.createElement('div');
					let main = document.createElement('div');
					let footer = document.createElement('div');
					let btnLeft;
					let btnRight;
					let btnOk;
					let closeIcon;
					if (type == 'hint') {
						btnOk = document.createElement('button');
						btnOk.className = 'btnOk';
					} else if (type == 'confirm') {
						btnLeft = document.createElement('button');
						btnLeft.className = 'btnLeft';
						btnRight = document.createElement('button');
						btnRight.className = 'btnRight';
					}
			
					let {
						modalTitle,
						content,
						cancelText,
						okText,
						width,
						onCancel,
						onOkCallBack,
						backgroundColor,
						cancelCallBack,
						isTopRightcancel,
						isCreateOpen
					} = this.options;
			
					modal.className = 'modal';
					modal.style.width = width + 'px';
					modal.style.backgroundColor = backgroundColor;
			
					modalTitleDom.className = 'modalTitle'
					modalTitleDom.innerHTML = `<span class="modalTitleText">${modalTitle}</span>`;
					if (isTopRightcancel) {
						closeIcon = document.createElement('span');
						closeIcon.addEventListener('click', closeModal.bind(this));
						closeIcon.className = 'closeModal';
						modalTitleDom.appendChild(closeIcon);
					}
			
			
			
					main.className = 'main';
					main.innerHTML = content;
					footer.className = 'footer';
					if (type == 'hint') {
						btnOk.innerHTML = '確認';
						footer.appendChild(btnOk);
						onCancel = onCancel ? onCancel : this.closeModal;
						btnOk.addEventListener('click', onCancel.bind(this));
					} else if (type == 'confirm') {
						btnLeft.innerHTML = '取消';
						btnRight.innerHTML = '確認';
						footer.appendChild(btnLeft);
						footer.appendChild(btnRight);
			
						onCancel = onCancel ? onCancel : this.closeModal;
						btnLeft.addEventListener('click', onCancel.bind(this));
						btnRight.addEventListener('click', onOkCallBack);
					}
			
					modal.appendChild(modalTitleDom);
					modal.appendChild(main);
					modal.appendChild(footer);
					modal.className = 'modal';
					this.options.onCancel = onCancel.bind(this);
					document.body.appendChild(modal);
				}
			
				// 關閉彈框
				function closeModal(ev) {
					options.cancelCallBack();
					let target = ev ? ev.path[2] : document.getElementsByClassName('modal')[0];
					let {
						mask
					} = this.options
					mask ? document.body.removeChild(document.querySelector('.mask')) : null;
					document.body.removeChild(target);
				}
			
				/**
				 * 當設置默認打開的時候可手動調用該方法
				 */
				function openModal() {
					this.init();
				}
			
				// 初始化
				function init() {
					let {
						mask
					} = this.options
					mask ? createMask() : null
					this.createModal(this.options.type);
				}
			
				Modal.prototype.init = init;
				Modal.prototype.createModal = createModal;
				Modal.prototype.closeModal = closeModal;
				Modal.prototype.openModal = openModal;
				// 執行初始化方法
				if (this.options.isCreateOpen) {
					this.init();
					if (this.options.lateRelease) {
						setTimeout(() => {
							let modal = document.getElementsByClassName('modal')[0];
							if(modal){
								this.options.onCancel();
							}
							
						}, this.options.lateReleaseTime);
					}
				}
			}
			

			document.getElementById("btn").addEventListener('click', () => {
				let modal = new Modal({
					lateRelease: true,
					modalTitle: '我是第二個',
					content: `<p>日常開發中,秒殺下單、搶紅包等等業務場景,都需要用到分佈式鎖。而Redis非常適合作為分佈式鎖使用。本文將分七個方案展開,跟大傢探討Redis分佈式鎖的正確使用方式。如果有不正確的地方,歡迎大傢指出哈,一起學習一起進步。</p>`
				})
				// modal.closeModal();
				// modal.openModal();

			})
		</script>
	</body>
</html>

以上就是原生JavaScript實現模態框的示例代碼的詳細內容,更多關於JavaScript模態框的資料請關註WalkonNet其它相關文章!

推薦閱讀: