1
0

【HTML & CSS】ねぷのフラグ

Last updated at Posted at 2024-03-02

ねぷのフラグとは?

これのこと

フラグが立ったり、折れたりして状態が分かりやすい素晴らしいUI

成果物

nep-flag.gif

コード

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>nep flag</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <input type="checkbox" id="nepu-checkbox" class="nep-flag">
  <label for="nepu-checkbox">ぴょいーん</label>
</body>
</html>
label {
  font-size: 24px;
  line-height: 50px;
  -webkit-tap-highlight-color: transparent;
}

input[type="checkbox"].nep-flag {
  display: none;
}
input[type="checkbox"].nep-flag + label::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("./flag-off.svg");
  background-size: cover;
  width: 50px;
  height: 50px;
  -webkit-tap-highlight-color: transparent;
}
input[type="checkbox"]:checked.nep-flag + label::before {
  background-image: url("./flag-on.svg");
}

チラ裏

このゲーム知ってる人いんのかな

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0