Home Web Front-end Front-end Q&A How to click on the background to show and hide in jquery

How to click on the background to show and hide in jquery

Apr 26, 2023 am 10:20 AM

With the continuous advancement of Internet technology, interactivity in web design is becoming more and more important. Among them, special effects such as "click on the background to show/hide" have become a very practical interaction method in web design. The realization of this special effect mainly relies on jQuery, a powerful JavaScript library.

So, how to achieve the effect of showing/hiding the background by clicking on it? Below, we will introduce the specific steps and precautions step by step.

Step 1: Set up basic HTML and CSS code

First, we need to create a modal box and a semi-transparent mask layer in HTML. Among them, the CSS attribute of the modal box is "display:none", which means that the modal box is not visible by default. The CSS attribute of the mask layer is "display:block", which means that by default, the mask layer is visible:

<div class="mask"></div>
<div class="modal" style="display:none;">
  <!-- 模态框内容 -->
</div>

<style>
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  z-index: 1;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 2;
}
</style>
Copy after login

Step 2: Use jQuery to display/hide the background on click

Next, We need to use the jQuery library to implement the special effects of showing/hiding the background on click. Specifically, we can pass the following code:

$(".mask").click(function () {
  $(".modal").hide();  // 隐藏模态框
  $(this).hide();      // 隐藏遮罩层
});

$(".modal").click(function (event) {
  event.stopPropagation(); // 阻止事件冒泡
});

$(".show-modal").click(function () {
  $(".modal").show();  // 显示模态框
  $(".mask").show();   // 显示遮罩层
});
Copy after login

Step 3: Step by step analysis of the code

First, we added a "click" event to the mask layer. When the user clicks on the mask layer, the following operations will be performed:

  • Hide the modal box ($(".modal").hide())
  • Hide the mask layer ($(this) .hide())

At the same time, we also need to note that when the user clicks on the modal box, we do not want the entire special effect to be turned off. Therefore, we need to add a "click" event to the modal and stop the event from bubbling up (event.stopPropagation()).

Finally, we need to add a "click" event to the "Show Modal Box" button. When the user clicks the button, the modal box and mask layer will be displayed.

Step 4: Some notes on CSS styles

In the process of realizing this special effect, the setting of CSS styles is also very critical. Below, we list some details that need attention:

  • The mask layer should be set to "fixed" positioning to ensure that the position of the mask layer does not change when the page is scrolled.
  • The positioning method of the modal box should be "fixed", which ensures that the modal box is always in the center of the screen.
  • The z-index value of the mask layer and modal box should be higher than the z-index value of other elements to ensure that it is always on top.

In short, clicking on the background to show/hide this special effect is very practical in web design, and it can provide users with a better interactive experience. During the implementation process, we can use the jQuery library to quickly implement this special effect, and we also need to pay attention to the CSS style settings. I hope this article can be helpful to the majority of web designers.

The above is the detailed content of How to click on the background to show and hide in jquery. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

React's Role in HTML: Enhancing User Experience React's Role in HTML: Enhancing User Experience Apr 09, 2025 am 12:11 AM

React combines JSX and HTML to improve user experience. 1) JSX embeds HTML to make development more intuitive. 2) The virtual DOM mechanism optimizes performance and reduces DOM operations. 3) Component-based management UI to improve maintainability. 4) State management and event processing enhance interactivity.

What are the limitations of Vue 2's reactivity system with regard to array and object changes? What are the limitations of Vue 2's reactivity system with regard to array and object changes? Mar 25, 2025 pm 02:07 PM

Vue 2's reactivity system struggles with direct array index setting, length modification, and object property addition/deletion. Developers can use Vue's mutation methods and Vue.set() to ensure reactivity.

React Components: Creating Reusable Elements in HTML React Components: Creating Reusable Elements in HTML Apr 08, 2025 pm 05:53 PM

React components can be defined by functions or classes, encapsulating UI logic and accepting input data through props. 1) Define components: Use functions or classes to return React elements. 2) Rendering component: React calls render method or executes function component. 3) Multiplexing components: pass data through props to build a complex UI. The lifecycle approach of components allows logic to be executed at different stages, improving development efficiency and code maintainability.

What are the benefits of using TypeScript with React? What are the benefits of using TypeScript with React? Mar 27, 2025 pm 05:43 PM

TypeScript enhances React development by providing type safety, improving code quality, and offering better IDE support, thus reducing errors and improving maintainability.

React and the Frontend: Building Interactive Experiences React and the Frontend: Building Interactive Experiences Apr 11, 2025 am 12:02 AM

React is the preferred tool for building interactive front-end experiences. 1) React simplifies UI development through componentization and virtual DOM. 2) Components are divided into function components and class components. Function components are simpler and class components provide more life cycle methods. 3) The working principle of React relies on virtual DOM and reconciliation algorithm to improve performance. 4) State management uses useState or this.state, and life cycle methods such as componentDidMount are used for specific logic. 5) Basic usage includes creating components and managing state, and advanced usage involves custom hooks and performance optimization. 6) Common errors include improper status updates and performance issues, debugging skills include using ReactDevTools and Excellent

How can you use useReducer for complex state management? How can you use useReducer for complex state management? Mar 26, 2025 pm 06:29 PM

The article explains using useReducer for complex state management in React, detailing its benefits over useState and how to integrate it with useEffect for side effects.

What are functional components in Vue.js? When are they useful? What are functional components in Vue.js? When are they useful? Mar 25, 2025 pm 01:54 PM

Functional components in Vue.js are stateless, lightweight, and lack lifecycle hooks, ideal for rendering pure data and optimizing performance. They differ from stateful components by not having state or reactivity, using render functions directly, a

How do you ensure that your React components are accessible? What tools can you use? How do you ensure that your React components are accessible? What tools can you use? Mar 27, 2025 pm 05:41 PM

The article discusses strategies and tools for ensuring React components are accessible, focusing on semantic HTML, ARIA attributes, keyboard navigation, and color contrast. It recommends using tools like eslint-plugin-jsx-a11y and axe-core for testi

See all articles