html CSSだけでつくる简易版の开闭パネル

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html CSSだけでつくる简易版の开闭パネル相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="ja">
<head>
  <meta charset="utf-8">
  <title>:target疑似クラスを使って、コンテンツを表示・非表示</title>
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  <style>
  #comments {
    padding-top: 70px;
  }

  #comments:not(:target) {
    display: none;
  }

  #comments:target {
    display: block;
  }
  </style>
</head>

<body>
  <div class="wrapper body-wrapper">
    <h1>簡易版の開閉パネル</h1>
    <p>:target疑似クラスを使って、コンテンツを表示・非表示することで、簡易版の開閉パネルになる</p>
    <a href="#comments">Show Comments</a>
    <section id="comments">
      <h3>Comments</h3>
      <p>ここは隠れている部分のコンテンツです。</p>
      <a href="#">Hide Comments</a>
    </section>
  </div>
</body>
</html>

以上是关于html CSSだけでつくる简易版の开闭パネル的主要内容,如果未能解决你的问题,请参考以下文章

html jQuery的でスライドパネル

html jQuery的でアコーディオンパネル

css 立体感のある水平线をCSSだけで実现する方法

javascript アコーディオンパネル

csharp 透过した色を绮丽に表示できるパネル

scss CSSだけでWebページのフェードイン表示を実装する方法https://q-az.net/fadein-open-only-css/