チェケラ門左衛門のブログ

チェケラ門左衛門のブログ

ブログの説明を入力します。

Amebaでブログを始めよう!

HTML

 

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" type="text/css" href="tyle.css">
    <meta charset="UTF-8">
</head>
<body>

<div style="float:left;">
<div class="pop-box">
  
  <label for="popup-on0"><label for="popup-on0"><div class="btn-open"><img src="https://www.crank-in.net/img/db/1310678_650.jpg" alt="" class="layer-img" height=300px style="margin-left:50pt;margin-right:30pt"><br><u>みちょぱ</u></div></label>
  <input type="checkbox" id="popup-on0">
  <div class="popup">
    <label for="popup-on0" class="icon-close">×</label>
    <div class="popup-content">
       <!-- ポップアップの中身 -->
      <img src="https://www.crank-in.net/img/db/1310678_650.jpg" alt="" class="layer-img"style="float:left;margin-right:10pt"><font face="MS PMincho" size="6"><b><font size="7">みちょぱ</font></b><br><br>池田 美優は、日本の女性ファッションモデルである。<br>

      現在は東京都北区赤羽在住。<br>

    愛称は「みちょぱ」。<br></font>
        <!-- ./ポップアップの中身 ここまで -->
    </div>
    <div style="clear:left"></div>
  </div>
</div>
</div>

<div style="float:left">
<div class="pop-box">
  
  <label for="popup-on1"><label for="popup-on1"><div class="btn-open"><img src="https://img-mdpr.freetls.fastly.net/article/Vo3w/wm/Vo3wqgxnGzLeFhy8sT1s5kaQwtcfAHk5ljaISpiCdWo.jpg?width=700&disable=upscale&auto=webp" alt="" class="layer-img" height=300px><br><u>ゆきぽよ</u></div></label>
  <input type="checkbox" id="popup-on1">
  <div class="popup">
    <label for="popup-on1" class="icon-close">×</label>
    <div class="popup-content">
       <!-- ポップアップの中身 -->
      <img src="https://img-mdpr.freetls.fastly.net/article/Vo3w/wm/Vo3wqgxnGzLeFhy8sT1s5kaQwtcfAHk5ljaISpiCdWo.jpg?width=700&disable=upscale&auto=webp" alt="" class="layer-img"style="float:left;margin-right:10pt"><font face="MS PMincho" size="6"><b><font size="7">ゆきぽよ</font></b><br><br>木村 有希は、<br>日本のモデル、タレントである。<br>愛称は、ゆきぽよ。<br>父親は日本人で、母親はフィリピン人とスペイン人のハーフである。<br></font>
        <!-- ./ポップアップの中身 ここまで -->
    </div>
    <div style="clear:left"></div>
  </div>
</div>

</div>

</body>
</html>

 

CSS

* {
  box-sizing: border-box;
  }

/* ポップアップウインドウの設定 */
.popup{
  background-color: #efefef;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1000px;
  height: 650px;
  
}
/* チェックボックスの初期設定 */
#popup-on0{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#popup-on0:checked + .popup{
  display: block;
}

/* チェックボックスの初期設定 */
#popup-on1{
  display: none;
}
/* チェックされたらポップアップウインドウを開く */
#popup-on1:checked + .popup{
  display: block;
}


/* 閉じるアイコン(右上) */
.icon-close{
  background: #000;
  color: #fff;
  font-size: 30px;
  padding: 0 10px;
  position: absolute;
  right: 0;
}

/* 閉じるボタン */
.btn-close{
  background: #000;
  border-radius: 10px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  margin: 10px auto;
  width: 95%;
  text-align: center;
}

/* 開くボタン */
.btn-open{
  background: #fff;
  border-radius: 10px;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  margin: 10px auto;
  width: 95%;
  text-align: center;
}

/* ポップアップの内容 */
.popup-content{
  margin: 70px auto 10px auto;
  width: 95%;
}