CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSでトグルスイッチ(オン/オフボタン)を作成するにはどうすればよいですか?


CSSでトグルスイッチを作成するためのコードは次のとおりです-

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
   .switch {
      position: relative;
      display: inline-block;
      width: 60px;
      height: 34px;
   }
   .switch input {
      opacity: 0;
      width: 0;
      height: 0;
   }
   span {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      -webkit-transition: .4s;
      transition: .4s;
   }
   span:before {
      position: absolute;
      content: "";
      height: 26px;
      width: 26px;
      left: 4px;
      bottom: 4px;
      background-color: white;
      -webkit-transition: .4s;
      transition: .4s;
   }
   input:checked + span {
      background-color: rgb(85, 21, 138);
   }
   input:focus + span {
      box-shadow: 0 0 1px rgb(255, 77, 211);
   }
   input:checked + span:before {
      transform: translateX(26px);
   }
   span.round {
      border-radius: 34px;
   }
   span.round:before {
      border-radius: 50%;
   }
</style>
</head>
<body>
<h1>Toggle Switch Example</h1>
<label class="switch">
<input type="checkbox">
<span class="round"></span>
</label>
<label class="switch">
<input type="checkbox" checked>
<span class="round"></span>
</label>
</body>
</html>

出力

上記のコードは次の出力を生成します-

CSSでトグルスイッチ(オン/オフボタン)を作成するにはどうすればよいですか?


  1. CSSで矢印を作成するにはどうすればよいですか?

    CSSで矢印を作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  2. Tkinterのオン/オフトグルボタンスイッチ

    Tkinterは、アプリケーションに必要なさまざまな種類のウィジェットを追加するための機能を提供します。これらのウィジェットには、ボタンウィジェット、エントリウィジェット、テキストボックス、スライダーなどがあります。この記事では、ボタンをオンまたはオフにできるアプリケーションを作成する方法を説明します。 この例では、これら2つのボタンをデモに使用します スイッチをオンにする スイッチを切る 例 # Import tkinter in the notebook from tkinter import * # Create an instance of window of fr