Implementation of HTML click button to expand menu

不言
Release: 2018-11-28 16:14:27
Original
12430 people have browsed it

In this article, we will introduce how to create a menu of extended elements when clicked in HTML. Let's look at the specific content below.

Implementation of HTML click button to expand menu

Let’s look at a problem first

The "Button Name" is surrounded by a black border line, and when clicked, the text will be displayed At the bottom, the border lines remain unchanged.

When I click on it, I want to expand the border line so that the entire sentence including "Button Name" is included.

But, how to write it if you want the size of the border line to perfectly surround the characters to be displayed, so that the size will change at that time?

Let’s look at a code

CSS code

.hidden_box{
  display:inline-block;
  margin:0;
  padding:0;
}
.hidden_box label{
  padding: 15px;
  font-weight: bold;
  border: solid 2px black;
  cursor :pointer;
}
.hidden_box label:hover{background: #efefef;}
.hidden_box input{display: none;}
.hidden_box .hidden_show{
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}
  .hidden_box input:checked ~ .hidden_show{
  padding: 10px 0;
  height: auto;
  opacity: 1;
}
Copy after login

HTML code

<div class="hidden_box">
  <label for="label1">按钮名称</label>
  <input type="checkbox" id="label1"/>
  <div class="hidden_show">
    文章文章文章文章。文章文章文章文章。文章文章文章文章。
    文章文章文章文章。文章文章文章文章。
  </div>
</div>
Copy after login

The display effect on the browser is as follows

Implementation of HTML click button to expand menu

When the mouse clicks on the "Button Name", the following effect will appear on the browser

Implementation of HTML click button to expand menu

From the display effect, the above The code does not seem to be able to perfectly solve the problem raised. Let's take a look at the specific solution

If it is limited by CSS, it will be a rough method, but there is a way Put it all in label.

First, let's add display: block to include the inner block element.

.hidden_box label{
  padding: 15px;
  font-weight: bold;
  border: solid 2px black;
  cursor :pointer;
  display: block;
}
Copy after login

Next, set the width of the hidden_show class to width so that the state before clicking can maintain an appropriate width

.hidden_box .hidden_show{
  height: 0;
  width: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}

.hidden_box input:checked ~ .hidden_show{
  padding: 10px 0;
  height: auto;
  width: auto;
  opacity: 1;
}
Copy after login

After that, let’s take a look at the HTML code

<div class="hidden_box">
  <label for="label1">
    按钮名称
    <input type="checkbox" id="label1"/>
    <div class="hidden_show">
      文章文章文章文章。文章文章文章文章。文章文章文章文章。
      文章文章文章文章。文章文章文章文章。
    </div>
  </label>
</div>
Copy after login

The display effect on the browser is as follows:

Implementation of HTML click button to expand menu

When you click the selection box behind "Button Name", the display effect on the browser is as follows:

Implementation of HTML click button to expand menu

The above is the detailed content of Implementation of HTML click button to expand menu. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!