search
HomeWeb Front-endFront-end Q&AHidden box CSS: easily hide and show page elements

In web design, hidden boxes are a commonly used CSS technique that can simply hide and display page elements to increase the interactivity and operability of the page. In this article, we will introduce how to use CSS to achieve the hidden box effect, including style setting, event binding and practical application.

1. Style setting

To achieve the hidden box effect, you first need to define a hidden box style. You can hide the element by setting the display attribute of the element to none, as shown below:

.hidden{
    display: none;
}

At this time, the element to which this style is applied will be hidden and will not occupy any space on the page.

2. Event Binding

In order to display and hide the hidden box, we need to bind events to related elements. Commonly used events include click and hover.

  1. click event

The click event is used to respond to the user's mouse click operation. When the user clicks on a specific element, the display or hiding of the element can be controlled through JS code.

HTML code:

<button>显示/隐藏</button>
<div>这是一个隐藏框</div>

CSS code:

.hidden{
    display: none;
}

JS code:

var btn = document.getElementById("btn");
var box = document.getElementById("box");
btn.onclick = function(){
    if(box.classList.contains("hidden")){
        box.classList.remove("hidden");
    } else{
        box.classList.add("hidden");
    }
};

The above code sets a button and a hidden box. When the user When the button is clicked, the JS code is used to determine whether the hidden box is hidden. If it is hidden, the .hidden style is removed and the hidden box is displayed; otherwise, the .hidden style is added to hide the hidden box.

  1. hover event

hover event is used to respond to the user's mouse hover operation. When the user hovers over a specific element, the display or hiding of the element can be controlled through JS code.

HTML code:

<div>鼠标悬停显示隐藏框</div>
<div>这是一个隐藏框</div>

CSS code:

.hidden{
    display: none;
}

JS code:

var box = document.getElementById("box");
var hiddenBox = document.getElementById("hidden-box");
box.onmouseover = function(){
    hiddenBox.classList.remove("hidden");
}
box.onmouseout = function(){
    hiddenBox.classList.add("hidden");
}

The above code sets a container and a hidden box. When the user When hovering over the container, remove the .hidden style through JS code to display the hidden box; when the mouse leaves, add the .hidden style to hide the hidden box.

3. Practical Application

In practical applications, hidden boxes can be used to achieve some common interactive effects, such as drop-down menus, folding panels, prompt boxes, etc.

  1. Drop-down menu

Drop-down menu is a common component in web design and can be used to display and select different options. The drop-down menu effect can be easily achieved using the hidden box CSS trick.

HTML code:

<div>
    <button>点击显示下拉菜单</button>
    <div>
        <a>选项1</a>
        <a>选项2</a>
        <a>选项3</a>
    </div>
</div>

CSS code:

.hidden{
    display: none;
}
.dropdown-menu{
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px;
}

JS code:

var dropdownBtn = document.querySelector(".dropdown-btn");
var dropdownMenu = document.querySelector(".dropdown-menu");
dropdownBtn.onclick = function(){
    if(dropdownMenu.classList.contains("hidden")){
        dropdownMenu.classList.remove("hidden");
    } else{
        dropdownMenu.classList.add("hidden");
    }
};

The above code sets a drop-down menu button and a drop-down menu option , when the user clicks the button, use the JS code to determine whether the drop-down menu is displayed, hide the drop-down menu when it is displayed, and display the drop-down menu when it is hidden.

  1. Collapse panel

Collapse panel can be used to display and hide multiple content blocks to make the page tidier. The collapsed panel effect can be easily achieved using the hidden box CSS trick.

HTML code:

<div>
    <div>
        <div>折叠面板1</div>
        <div>这是折叠面板1的内容</div>
    </div>
    <div>
        <div>折叠面板2</div>
        <div>这是折叠面板2的内容</div>
    </div>
    <div>
        <div>折叠面板3</div>
        <div>这是折叠面板3的内容</div>
    </div>
</div>

CSS code:

.hidden{
    display: none;
}
.accordion-item{
    border: 1px solid #ccc;
    margin: 10px 0;
}
.accordion-header{
    background-color: #eee;
    padding: 5px;
}
.accordion-content{
    padding: 10px;
}

JS code:

var accordionHeaders = document.querySelectorAll(".accordion-header");
var accordionContents = document.querySelectorAll(".accordion-content");
for(var i = 0; i <p>The above code sets multiple folding panel items. When the user clicks When the title of a certain panel is determined, the JS code is used to determine whether the panel content is displayed. When displayed, the content is hidden, and when hidden, the content is displayed. </p><p>4. Summary</p><p>The hidden box CSS technique is a simple and practical technology in web design. It can easily hide and display page elements and improve the interactivity and operability of the page. . Through the introduction of this article, we can understand the implementation principles and common application scenarios of hidden boxes, and help provide users with a better web design experience. </p>

The above is the detailed content of Hidden box CSS: easily hide and show page elements. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
CSS: Can I use multiple IDs in the same DOM?CSS: Can I use multiple IDs in the same DOM?May 14, 2025 am 12:20 AM

No,youshouldn'tusemultipleIDsinthesameDOM.1)IDsmustbeuniqueperHTMLspecification,andusingduplicatescancauseinconsistentbrowserbehavior.2)Useclassesforstylingmultipleelements,attributeselectorsfortargetingbyattributes,anddescendantselectorsforstructure

The Aims of HTML5: Creating a More Powerful and Accessible WebThe Aims of HTML5: Creating a More Powerful and Accessible WebMay 14, 2025 am 12:18 AM

HTML5aimstoenhancewebcapabilities,makingitmoredynamic,interactive,andaccessible.1)Itsupportsmultimediaelementslikeand,eliminatingtheneedforplugins.2)Semanticelementsimproveaccessibilityandcodereadability.3)Featureslikeenablepowerful,responsivewebappl

Significant Goals of HTML5: Enhancing Web Development and User ExperienceSignificant Goals of HTML5: Enhancing Web Development and User ExperienceMay 14, 2025 am 12:18 AM

HTML5aimstoenhancewebdevelopmentanduserexperiencethroughsemanticstructure,multimediaintegration,andperformanceimprovements.1)Semanticelementslike,,,andimprovereadabilityandaccessibility.2)andtagsallowseamlessmultimediaembeddingwithoutplugins.3)Featur

HTML5: Is it secure?HTML5: Is it secure?May 14, 2025 am 12:15 AM

HTML5isnotinherentlyinsecure,butitsfeaturescanleadtosecurityrisksifmisusedorimproperlyimplemented.1)Usethesandboxattributeiniframestocontrolembeddedcontentandpreventvulnerabilitieslikeclickjacking.2)AvoidstoringsensitivedatainWebStorageduetoitsaccess

HTML5 goals in comparison with older HTML versionsHTML5 goals in comparison with older HTML versionsMay 14, 2025 am 12:14 AM

HTML5aimedtoenhancewebdevelopmentbyintroducingsemanticelements,nativemultimediasupport,improvedformelements,andofflinecapabilities,contrastingwiththelimitationsofHTML4andXHTML.1)Itintroducedsemantictagslike,,,improvingstructureandSEO.2)Nativeaudioand

CSS: Is it bad to use ID selector?CSS: Is it bad to use ID selector?May 13, 2025 am 12:14 AM

Using ID selectors is not inherently bad in CSS, but should be used with caution. 1) ID selector is suitable for unique elements or JavaScript hooks. 2) For general styles, class selectors should be used as they are more flexible and maintainable. By balancing the use of ID and class, a more robust and efficient CSS architecture can be implemented.

HTML5: Goals in 2024HTML5: Goals in 2024May 13, 2025 am 12:13 AM

HTML5'sgoalsin2024focusonrefinementandoptimization,notnewfeatures.1)Enhanceperformanceandefficiencythroughoptimizedrendering.2)Improveaccessibilitywithrefinedattributesandelements.3)Addresssecurityconcerns,particularlyXSS,withwiderCSPadoption.4)Ensur

What are the main areas where HTML5 tried to improve?What are the main areas where HTML5 tried to improve?May 13, 2025 am 12:12 AM

HTML5aimedtoimprovewebdevelopmentinfourkeyareas:1)Multimediasupport,2)Semanticstructure,3)Formcapabilities,and4)Offlineandstorageoptions.1)HTML5introducedandelements,simplifyingmediaembeddingandenhancinguserexperience.2)Newsemanticelementslikeandimpr

See all articles

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 Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools