


Using a mask layer in Web pages can prevent repeated operations and prompt loading; it can also simulate pop-up modal windows.
Implementation idea: One DIV serves as the mask layer, and one DIV displays the loading dynamic GIF image. In the following sample code, it also shows how to call the display and hiding mask layer in the iframe subpage.
Sample code:
index.html
- html>
- html lang="zh-CN">
- head>
- meta charset="utf-8">
- meta http-equiv="X-UA-Commpatible" content="IE=edge">
- title>HTML遮罩层title>
- link rel="stylesheet" href="css/index.css">
- head>
- body>
- div class="header" id="header">
- div class="title-outer">
- span class="title">
- HTML遮罩层使用
- span>
- div>
- div>
- div class="body" id="body">
- iframe id="iframeRight" name="iframeRight" width="100%" height="100%"
- scrolling="no" frameborder="0"
- style="border: 0px;margin: 0px; padding: 0px; width: 100%; height: 100%;overflow: hidden;"
- onload="rightIFrameLoad(this)" src="body.html">iframe>
- div>
- div id="overlay" class="overlay">div>
- div id="loadingTip" class="loading-tip">
- img src="images/loading.gif" />
- div>
- div class="modal" id="modalDiv">div>
- script type='text/javascript' src="js/jquery-1.10.2.js">script>
- script type="text/javascript" src="js/index.js">script>
- body>
- html>
index.css
- * {
- margin: 0;
- padding: 0;
- }
- html, body {
- width: 100%;
- height: 100%;
- font-size: 14px;
- }
- div.header {
- width: 100%;
- height: 100px;
- border-bottom: 1px dashed blue;
- }
- div.title-outer {
- position: relative;
- top: 50%;
- height: 30px;
- }
- span.title {
- text-align: left;
- position: relative;
- left: 3%;
- top: -50%;
- font-size: 22px;
- }
- div.body {
- width: 100%;
- }
- .overlay {
- position: absolute;
- top: 0px;
- left: 0px;
- z-index: 10001;
- display:none;
- filter:alpha(opacity=60);
- background-color: #777;
- opacity: 0.5;
- -moz-opacity: 0.5;
- }
- .loading-tip {
- z-index: 10002;
- position: fixed;
- display:none;
- }
- .loading-tip img {
- width:100px;
- height:100px;
- }
- .modal {
- position:absolute;
- width: 600px;
- height: 360px;
- border: 1px solid rgba(0, 0, 0, 0.2);
- box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.5);
- display: none;
- z-index: 10003;
- border-radius: 6px;
- }
index.js
- function rightIFrameLoad(iframe) {
- var pHeight = getWindowInnerHeight() - $('#header').height() - 5 ;
- $('div.body').height(pHeight);
- console.log(pHeight);
- }
- // Browser Compatibility Get browser viewport height
- function getWindowInnerHeight() {
- var winHeight = window.innerHeight
- || (document.documentElement && document.documentElement.clientHeight)
- || (document.body && document.body.clientHeight);
- return winHeight;
- }
- // Browser compatibility Get browser viewport width
- function getWindowInnerWidth() {
- var winWidth = window.innerWidth
- || (document.documentElement && document.documentElement.clientWidth)
- || (document.body && document.body.clientWidth);
- return winWidth;
- }
- /**
- * Show mask layer
- */
- function showOverlay() {
- //The width and height of the mask layer are the width and height of the page content respectively
- $('.overlay').css({'height':$(document). height(),'width':$(document).width()});
- $('.overlay').show();
- }
- /**
- * Show Loading prompt
- */
- function showLoading() {
- //Display the mask layer first
- showOverlay();
- // Loading prompt window is centered
- $("#loadingTip").css('top',
- (getWindowInnerHeight() - $("#loadingTip").height()) / 2 'px');
- $("#loadingTip").css('left',
- (getWindowInnerWidth() - $("#loadingTip").width()) / 2 'px');
- $(
- "#loadingTip").show(); $(document).scroll(
- function() {
- return false; });
- }
- /**
- * Hide Loading prompt
- */
- function hideLoading() { $(
- '.overlay').hide(); $(
- "#loadingTip").hide(); $(document).scroll(
- function() {
- return true; });
- }
- /**
- * Simulate pop-up modal window DIV
- * @param innerHtml modal window HTML content
- */
- function showModal(innerHtml) {
- // Get the DIV used to display the simulation modal window
- var dialog = $('#modalDiv');
- // Setting content
- dialog.html(innerHtml);
- // Modal window DIV window is centered
- dialog.css({
- 'top' : (getWindowInnerHeight() - dialog.height()) / 2 'px' ,
- 'left' : (getWindowInnerWidth() - dialog.width()) / 2 'px'
- });
- // Window DIV rounded corners
- Dialog.find('.modal-container').css('border-radius', '6px');
- // Modal window close button event
- dialog.find('.btn-close').click(function(){
- closeModal();
- });
- //Display mask layer
- showOverlay();
- //Display mask layer
- dialog.show();
- }
- /**
- * Simulate closing modal window DIV
- */
- function closeModal() {
- $('.overlay').hide();
- $('#modalDiv').hide();
- $('#modalDiv').html('');
- }
body.html
- html>
- html lang="zh-CN">
- head>
- meta charset="utf-8">
- meta http-equiv="X-UA-Commpatible" content="IE=edge">
- title>body 页面title>
- style type="text/css">
- * {
- margin: 0;
- padding: 0;
- }
- html, body {
- width: 100%;
- height: 100%;
- }
- .outer {
- width: 200px;
- height: 120px;
- position: relative;
- top: 50%;
- left: 50%;
- }
- .inner {
- width: 200px;
- height: 120px;
- position: relative;
- top: -50%;
- left: -50%;
- }
- .button {
- width: 200px;
- height: 40px;
- position: relative;
- }
- .button#btnShowLoading {
- top: 0;
- }
- .button#btnShowModal {
- top: 30%;
- }
- style>
- script type="text/ javascript">
- function showOverlay() {
- // Call the parent window to display the mask layer and Loading prompts
- window.top.window.showLoading();
- // Use a timer to simulate closing the Loading prompt
- setTimeout(function() {
- window.top.window.hideLoading();
- }, 3000);
- }
- function showModal() {
- // Call the parent window method to simulate a pop-up modal window
- window.top.showModal($('#modalContent').html());
- }
- script>
- head>
- body>
- div class='outer' >
- div class='inner' >
- button id='btnShowLoading' class='button' onclick='showOverlay();'>Click to pop up the mask layerbutton>
- button id='btnShowModal' class='button' onclick='showModal();'>Click to pop up the modal windowbutton>
- div>
- div>
- div id='modalContent' style='display: none;'>
- div class='modal- container' style='width: 100%;height: 100%;background-color: white;'>
- div style='width: 100%;height: 49px;position: relative;left: 50%;top: 50%;'>
- span style='font-size: 36px; width: 100%; text-align:center; display: inline-block; position:inherit; left: -50%;top: -50%;'>模态窗口1span>
- div>
- button class='btn-close' style='width: 100px; height: 30px; position: absolute; right: 30px; bottom: 20px;'>关闭button>
- div>
- div>
- script type='text/javascript' src="js/jquery-1.10.2.js">script>
- body>
- html>
运行结果:
初始化
显示遮罩层和Loading提示
显示遮罩层和模拟弹出模态窗口
以上就是本文的全部内容,希望对大家的学习有所帮助。

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
