Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <head>
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <!--==============レイアウトを制御する独自のCSSを読み込み===============-->
  <link rel="stylesheet" type="text/css" href="https://assets.codepen.io/6329135/reset.css">
</head>

<body>
  <img src="https://assets.codepen.io/6329135/wave.jpeg" />

  <div class="open-btn"></div>

  <div id="search-wrap">

    <div class="close-btn"><span></span><span></span></div>

    <div class="search-area">
      <form role="search" method="get" action="">
        <input type="text" value="" name="" id="search-text" placeholder="search">
        <input type="submit" id="searchsubmit" value="">
      </form>
    </div>
    <!--/search-area-->
  </div>
  <!--/search-wrap-->

  <p class="text">虫眼鏡マークをクリックすると<br>全画面表示で検索窓が出現</p>

  <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
</body>
              
            
!

CSS

              
                @charset "utf-8";

/*========= 検索窓を開くための虫眼鏡ボタン設定 ===========*/

.open-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9);
  background: rgba(255, 255, 255, 0.3)
    url("https://assets.codepen.io/6329135/icon_search.svg") no-repeat 15px
    center; /*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.open-btn.hidden {
  display: none;
}

/*========= 検索窓の設定 ===============*/

/*==検索窓背景のエリア*/

/*検索窓のエリア*/
#search-wrap {
  position: fixed; /*固定配置にして*/
  top: 0;
  left: 0;
  z-index: -1; /*最背面に設定*/
  opacity: 0; /*透過を0に*/
  transition: all 0.4s; /*transitionを使ってスムースに現れる*/
  width: 100%;
  height: 100vh;
}

/*テキスト入力input設定*/
#search-text {
  -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
  width: 60px; /*テキスト入力エリアが伸びる前の横幅*/
  height: 60px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 2px rgba(6, 0, 1, 0.7);
  background: rgba(255, 255, 255, 0.3); /*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  transition: all 0.5s; /*transitionを使ってスムースに伸ばす*/
  outline: none;
  cursor: pointer; /*カーソルを指マークに*/
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
#search-wrap.panelactive {
  opacity: 1; /*不透明に変更*/
  z-index: 3; /*全面に出現*/
  background-image: linear-gradient(
    358.4deg,
    rgba(249, 151, 119, 0.5) -2.1%,
    rgba(98, 58, 162, 0.5) 90%
  );
  /*中の要素を天地中央揃えにする設定*/
  display: flex;
  justify-content: center;
  align-items: center;
}

/*==検索窓のエリア*/

#search-wrap .search-area {
  display: none; /*検索窓のエリアは、はじめ非表示*/
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
#search-wrap.panelactive .search-area {
  display: block; /*検索窓エリアを表示*/
  width: 80%;
  position: relative;
}

/*==検索フォームの設定*/

#search-wrap form {
  position: relative;
  height: 66px;
}

/*==テキスト入力とボタンinput共通設定*/
#search-wrap input {
  -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer; /*カーソルを指マークに*/
  color: #fff;
}

/*テキスト入力input設定*/
#search-wrap input[type="text"] {
  width: 100%;
  padding: 20px;
  border: none;
  border-bottom: 2px solid #666;
  transition: all 0.5s;
  letter-spacing: 0.05em;
}

#search-wrap input[type="text"]:focus {
  background: #444;
}

/*ボタンinput設定*/
#search-wrap input[type="submit"] {
  position: absolute;
  top: 0;
  right: 10px;
  background: url("https://assets.codepen.io/6329135/icon_search.svg") no-repeat
    15px center; /*虫眼鏡アイコンを背景に表示*/
  background-size: 25px 25px;
  width: 60px;
  height: 60px;
}

/*======= 閉じるための×ボタン ========*/
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
}

.close-btn span {
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}

/*×マーク*/
.close-btn span:nth-of-type(1) {
  top: 21px;
  left: 16px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}

.close-btn span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}

/*========= レイアウトのためのCSS ===============*/
img {
  width: 100%;
  height: 100vh;
  vertical-align: middle;
  filter: brightness(95%) blur(1px);
  object-fit: cover;
}

.text {
  margin: 0 0 10px 0;
  position: absolute;
  mix-blend-mode: overlay;
  color: white;
  font-size: clamp(12px, 5vw, 2rem);
  font-weight: bold;
  text-align: right;
  top: 100px;
  right: 20px;
}

.text.hidden {
  display: none;
}

              
            
!

JS

              
                //開くボタンを押した時には
$(".open-btn").click(function () {
  $("#search-wrap").addClass("panelactive"); //#search-wrapへpanelactiveクラスを付与
  $(".open-btn").addClass("hidden"); //.open-btnへhiddenクラスを付与
  $(".text").addClass("hidden"); //.textへhiddenクラスを付与
  $("#search-text").focus(); //テキスト入力のinputにフォーカス
});

//閉じるボタンを押した時には
$(".close-btn").click(function () {
  $("#search-wrap").removeClass("panelactive"); //#search-wrapからpanelactiveクラスを除去
  $(".open-btn").removeClass("hidden"); //.open-btnからhiddenクラスを除去
  $(".text").removeClass("hidden"); //.textからhiddenクラスを除去
});

              
            
!
999px

Console