网站链接: 我爱捣鼓
当前位置: 首页 > 前端开发 > css

CSS3制作漂亮的Checkbox样式效果

2022/10/15 10:14:15

随着css的更新迭代,功能越来越强大了,今天我们就介绍一个css3制作漂亮的checkbox样式的方法,如下图所示:<html><head> <meta charset="UTF-8"> <link rel="apple-touch-icon" type="image/png" href="h…

        随着css的更新迭代,功能越来越强大了,今天我们就介绍一个css3制作漂亮的checkbox样式的方法,如下图所示:


image.png

<html>
<head>
  <meta charset="UTF-8">
  <link rel="apple-touch-icon" type="image/png"
    href="https://cpwebassets.codepen.io/assets/favicon/apple-touch-icon-5ae1a0698dcc2402e9712f7d01ed509a57814f994c660df9f7a952f3060705ee.png">
  <meta name="apple-mobile-web-app-title" content="CodePen">
  <link rel="shortcut icon" type="image/x-icon"
    href="https://cpwebassets.codepen.io/assets/favicon/favicon-aec34940fbc1a6e787974dcd360f2c6b63348d4b1f4e06c77743096d55480f33.ico">
  <link rel="mask-icon" type="image/x-icon"
    href="https://cpwebassets.codepen.io/assets/favicon/logo-pin-8f3771b1072e3c38bd662872f6b673a722f4b3ca2421637d5596661b4e2132cc.svg"
    color="#111">
  <title>CSS3制作漂亮的Checkbox样式效果</title>
  <link href="https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300" rel="stylesheet"
    type="text/css">
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
  <style>
    /* $activeColor: #c0392b; //red */
    /* $background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/13460/dark_wall.png'); */
    /* .slideOne */
    .slideOne {
      width: 50px;
      height: 10px;
      background: #333;
      margin: 20px auto;
      position: relative;
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
    }
    .slideOne label {
      display: block;
      width: 16px;
      height: 16px;
      position: absolute;
      top: -3px;
      left: -3px;
      cursor: pointer;
      background: #fcfff4;
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
      border-radius: 50px;
      box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease;
    }
    .slideOne input[type=checkbox] {
      visibility: hidden;
    }
    .slideOne input[type=checkbox]:checked+label {
      left: 37px;
    }
    /* end .slideOne */
    /* .slideTwo */
    .slideTwo {
      width: 80px;
      height: 30px;
      background: #333;
      margin: 20px auto;
      position: relative;
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
    }
    .slideTwo:after {
      content: '';
      position: absolute;
      top: 14px;
      left: 14px;
      height: 2px;
      width: 52px;
      background: #111;
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
    }
    .slideTwo label {
      display: block;
      width: 22px;
      height: 22px;
      cursor: pointer;
      position: absolute;
      top: 4px;
      z-index: 1;
      left: 4px;
      background: #fcfff4;
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
    }
    .slideTwo label:after {
      content: '';
      width: 10px;
      height: 10px;
      position: absolute;
      top: 6px;
      left: 6px;
      background: #333;
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px black, 0px 1px 0px rgba(255, 255, 255, 0.9);
    }
    .slideTwo input[type=checkbox] {
      visibility: hidden;
    }
    .slideTwo input[type=checkbox]:checked+label {
      left: 54px;
    }
    .slideTwo input[type=checkbox]:checked+label:after {
      background: #27ae60;
      /*activeColor*/
    }
    /* end .slideTwo */
    /* .slideThree */
    .slideThree {
      width: 80px;
      height: 26px;
      background: #333;
      margin: 20px auto;
      position: relative;
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
    }
    .slideThree:after {
      content: 'OFF';
      color: #000;
      position: absolute;
      right: 10px;
      z-index: 0;
      font: 12px/26px Arial, sans-serif;
      font-weight: bold;
      text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
    }
    .slideThree:before {
      content: 'ON';
      color: #27ae60;
      position: absolute;
      left: 10px;
      z-index: 0;
      font: 12px/26px Arial, sans-serif;
      font-weight: bold;
    }
    .slideThree label {
      display: block;
      width: 34px;
      height: 20px;
      cursor: pointer;
      position: absolute;
      top: 3px;
      left: 3px;
      z-index: 1;
      background: #fcfff4;
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    }
    .slideThree input[type=checkbox] {
      visibility: hidden;
    }
    .slideThree input[type=checkbox]:checked+label {
      left: 43px;
    }
    /* end .slideThree */
    /* .roundedOne */
    .roundedOne {
      width: 28px;
      height: 28px;
      position: relative;
      margin: 20px auto;
      background: #fcfff4;
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .roundedOne label {
      width: 20px;
      height: 20px;
      cursor: pointer;
      position: absolute;
      left: 4px;
      top: 4px;
      background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
    }
    .roundedOne label:after {
      content: '';
      width: 16px;
      height: 16px;
      position: absolute;
      top: 2px;
      left: 2px;
      background: #27ae60;
      background: linear-gradient(to bottom, #27ae60 0%, #145b32 100%);
      opacity: 0;
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .roundedOne label:hover::after {
      opacity: 0.3;
    }
    .roundedOne input[type=checkbox] {
      visibility: hidden;
    }
    .roundedOne input[type=checkbox]:checked+label:after {
      opacity: 1;
    }
    /* end .roundedOne */
    /* .roundedTwo */
    .roundedTwo {
      width: 28px;
      height: 28px;
      position: relative;
      margin: 20px auto;
      background: #fcfff4;
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .roundedTwo label {
      width: 20px;
      height: 20px;
      position: absolute;
      top: 4px;
      left: 4px;
      cursor: pointer;
      background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
      border-radius: 50px;
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
    }
    .roundedTwo label:after {
      content: '';
      width: 9px;
      height: 5px;
      position: absolute;
      top: 5px;
      left: 4px;
      border: 3px solid #fcfff4;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      transform: rotate(-45deg);
    }
    .roundedTwo label:hover::after {
      opacity: 0.3;
    }
    .roundedTwo input[type=checkbox] {
      visibility: hidden;
    }
    .roundedTwo input[type=checkbox]:checked+label:after {
      opacity: 1;
    }
    /* end .roundedTwo */
    /* .squaredOne */
    .squaredOne {
      width: 28px;
      height: 28px;
      position: relative;
      margin: 20px auto;
      background: #fcfff4;
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
      box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .squaredOne label {
      width: 20px;
      height: 20px;
      position: absolute;
      top: 4px;
      left: 4px;
      cursor: pointer;
      background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
    }
    .squaredOne label:after {
      content: '';
      width: 16px;
      height: 16px;
      position: absolute;
      top: 2px;
      left: 2px;
      background: #27ae60;
      background: linear-gradient(to bottom, #27ae60 0%, #145b32 100%);
      box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
      opacity: 0;
    }
    .squaredOne label:hover::after {
      opacity: 0.3;
    }
    .squaredOne input[type=checkbox] {
      visibility: hidden;
    }
    .squaredOne input[type=checkbox]:checked+label:after {
      opacity: 1;
    }
    /* end .squaredOne */
    /* .squaredTwo */
    .squaredTwo {
      width: 28px;
      height: 28px;
      position: relative;
      margin: 20px auto;
      background: #fcfff4;
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
      box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .squaredTwo label {
      width: 20px;
      height: 20px;
      cursor: pointer;
      position: absolute;
      left: 4px;
      top: 4px;
      background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
    }
    .squaredTwo label:after {
      content: '';
      width: 9px;
      height: 5px;
      position: absolute;
      top: 4px;
      left: 4px;
      border: 3px solid #fcfff4;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      transform: rotate(-45deg);
    }
    .squaredTwo label:hover::after {
      opacity: 0.3;
    }
    .squaredTwo input[type=checkbox] {
      visibility: hidden;
    }
    .squaredTwo input[type=checkbox]:checked+label:after {
      opacity: 1;
    }
    /* end .squaredTwo */
    /* .squaredThree */
    .squaredThree {
      width: 20px;
      position: relative;
      margin: 20px auto;
    }
    .squaredThree label {
      width: 20px;
      height: 20px;
      cursor: pointer;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
      border-radius: 4px;
      box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
    }
    .squaredThree label:after {
      content: '';
      width: 9px;
      height: 5px;
      position: absolute;
      top: 4px;
      left: 4px;
      border: 3px solid #fcfff4;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      transform: rotate(-45deg);
    }
    .squaredThree label:hover::after {
      opacity: 0.3;
    }
    .squaredThree input[type=checkbox] {
      visibility: hidden;
    }
    .squaredThree input[type=checkbox]:checked+label:after {
      opacity: 1;
    }
    /* end .squaredThree */
    /* .squaredFour */
    .squaredFour {
      width: 20px;
      position: relative;
      margin: 20px auto;
    }
    .squaredFour label {
      width: 20px;
      height: 20px;
      cursor: pointer;
      position: absolute;
      top: 0;
      left: 0;
      background: #fcfff4;
      background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
      border-radius: 4px;
      box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
    }
    .squaredFour label:after {
      content: '';
      width: 9px;
      height: 5px;
      position: absolute;
      top: 4px;
      left: 4px;
      border: 3px solid #333;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      transform: rotate(-45deg);
    }
    .squaredFour label:hover::after {
      opacity: 0.5;
    }
    .squaredFour input[type=checkbox] {
      visibility: hidden;
    }
    .squaredFour input[type=checkbox]:checked+label:after {
      opacity: 1;
    }
    /* end .squaredFour */
    * {
      box-sizing: border-box;
    }
    body {
      background: #3498db;
      font-family: 'Open Sans', sans-serif;
      font-weight: 300;
    }
    body h1,
    body h2,
    body em {
      color: #eee;
      font-size: 30px;
      text-align: center;
      margin: 20px 0 0 0;
      -webkit-font-smoothing: antialiased;
      text-shadow: 0px 1px #000;
    }
    body em {
      font-size: 14px;
      text-align: center;
      display: block;
      margin-bottom: 50px;
    }
    body .ondisplay {
      text-align: center;
      padding: 20px 0;
    }
    body .ondisplay section {
      width: 100px;
      height: 100px;
      background: #555;
      display: inline-block;
      position: relative;
      text-align: center;
      margin-top: 5px;
      border: 1px solid gray;
      border-radius: 5px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    }
    body .ondisplay section:after {
      /*         visibility: hidden; */
      content: attr(title);
      position: absolute;
      width: 100%;
      left: 0;
      bottom: 3px;
      color: #fff;
      font-size: 12px;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      text-shadow: 0px 1px #000;
    }
  </style>
  <script>
    window.console = window.console || function (t) { };
  </script>
  <script>
    if (document.location.search.match(/type=embed/gi)) {
      window.parent.postMessage("resize", "*");
    }
  </script>
</head>
<body translate="no">
  <h1>CSS3 Checkbox Styles</h1>
  <em>Click any button below</em>
  <div>
    <section title=".slideOne" style="background: none; border: none; box-shadow: none;">
      <!-- .slideOne -->
      <div>
        <input type="checkbox" value="None" id="slideOne" name="check" checked="">
        <label for="slideOne"></label>
      </div>
      <!-- end .slideOne -->
    </section>
    <section title=".slideTwo" style="background: none; border: none; box-shadow: none;">
      <!-- .slideTwo -->
      <div>
        <input type="checkbox" value="None" id="slideTwo" name="check" checked="">
        <label for="slideTwo"></label>
      </div>
      <!-- end .slideTwo -->
    </section>
    <section title=".slideThree" style="background: none; border: none; box-shadow: none;">
      <!-- .slideThree -->
      <div>
        <input type="checkbox" value="None" id="slideThree" name="check" checked="">
        <label for="slideThree"></label>
      </div>
      <!-- end .slideThree -->
    </section>
    <section title=".roundedOne" style="background: none; border: none; box-shadow: none;">
      <!-- .roundedOne -->
      <div>
        <input type="checkbox" value="None" id="roundedOne" name="check" checked="">
        <label for="roundedOne"></label>
      </div>
      <!-- end .roundedOne -->
    </section>
    <section title=".roundedTwo" style="background: none; border: none; box-shadow: none;">
      <!-- .roundedTwo -->
      <div>
        <input type="checkbox" value="None" id="roundedTwo" name="check" checked="">
        <label for="roundedTwo"></label>
      </div>
      <!-- end .roundedTwo -->
    </section>
    <section title=".squaredOne" style="background: none; border: none; box-shadow: none;">
      <!-- .squaredOne -->
      <div>
        <input type="checkbox" value="None" id="squaredOne" name="check" checked="">
        <label for="squaredOne"></label>
      </div>
      <!-- end .squaredOne -->
    </section>
    <section title=".squaredTwo" style="background: none; border: none; box-shadow: none;">
      <!-- .squaredTwo -->
      <div>
        <input type="checkbox" value="None" id="squaredTwo" name="check" checked="">
        <label for="squaredTwo"></label>
      </div>
      <!-- end .squaredTwo -->
    </section>
    <section title=".squaredThree" style="background: none; border: none; box-shadow: none;">
      <!-- .squaredThree -->
      <div>
        <input type="checkbox" value="None" id="squaredThree" name="check" checked="">
        <label for="squaredThree"></label>
      </div>
      <!-- end .squaredThree -->
    </section>
    <section title=".squaredFour" style="background: none; border: none; box-shadow: none;">
      <!-- .squaredFour -->
      <div>
        <input type="checkbox" value="None" id="squaredFour" name="check" checked="">
        <label for="squaredFour"></label>
      </div>
      <!-- end .squaredFour -->
    </section>
  </div>
  <script
    src="https://cpwebassets.codepen.io/assets/common/stopExecutionOnTimeout-1b93190375e9ccc259df3a57c1abc0e64599724ae30d7ea4c6877eb615f89387.js"></script>
  <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  <script id="rendered-js">
    // Converted to SCSS. If you want to grab just the CSS, click the `View Compiled` button on the css window over there <-- . That will list out the compiled css for you to use. Grab all the css between the comments and the html between the comments and it should work like a champ anywhere you place it.
    // All this jquery is just used for presentation. Not required at all for the radio buttons to work.
    $(document).ready(function () {
      //   Hide the border by commenting out the variable below
      var $on = 'section';
      $($on).css({
        'background': 'none',
        'border': 'none',
        'box-shadow': 'none'
      });
    });
//# sourceURL=pen.js
  </script>
  <div id="xl_chrome_ext_{4DB361DE-01F7-4376-B494-639E489D19ED}" style="display: none;">
    <div></div>
    <a id="xl_chrome_ext_download" href="javascript:;">下载视频</a>
    <a id="xl_chrome_ext_close" href="javascript:;"></a>
  </div>
</body>
</html>

        查看在线实例

        通过以上内容我们知道了css3如何制作漂亮的Checkbox样式效果?感谢您访问“我爱捣鼓(www.woaidaogu.com)”网站的内容,希望对大家有所帮助!引用本文内容时,请注明出处!谢谢合作!


相关资讯

  • css实现多种促销banner样式

    电商节双十一、双十二经常需要搞促销,今天我们就来介绍几款通过css实现的促销banner样式,如下图所示:<html><head> <meta charset="UTF-8"> <link rel="apple-touch-icon" type="image/png" href="https…

    2022/11/24 12:06:35
  • css实现漂亮的苹果风格组件效果

    苹果IOS系统的界面很漂亮,今天我们就用css实现漂亮的类似苹果风格的组件效果。如下图所示:<html><head> <meta charset="UTF-8"><style data-styles="">ion-icon{visibility:hidden}.hydrated{visibility:inherit}</st…

    2022/11/24 10:36:42
  • css实现图片和背景同时滑动的酷炫效果

    我们曾经介绍过很多种图片滑动的效果,今天我们使用css实现一个图片和背景同时滑动的酷炫效果,如下图所示:<html><head> <meta charset="UTF-8"> <link rel="apple-touch-icon" type="image/png" href…

    2022/11/22 21:57:11
  • css实现酷炫Flash文字跳动动画效果

    Flash虽然已被淘汰了,但它所实现的一些效果还是非常棒的,今天我们就用css实现一个酷炫的Flash文字跳动的经典动画效果,如下图所示:<!DOCTYPE html><html><head> <meta charset="UTF-8"> <link rel="apple-touch-icon…

    2022/11/22 21:39:50
  • 设置英文首字母大写的css属性是什么?

    设置CSS text-transform 的属性为capitalize就可以实现英文首字母大写。 定义和用法  text-transform 属性控制文本的大小写。 属性值 值 描 述 none 默认。定义带有小写字…

    2021/7/14 20:35:17
  • 只让页面显示横滚动条,不显示竖滚动条如何实现?

    只让页面显示横滚动条,不显示竖滚动条的方法其实很简单,主要用到body的两个css属性 overflow和 overflow-y,如下所示:body { overflow:scroll; overflow-y:hidden;}

    2021/2/28 21:45:25
  • 网页的滚动条样式可以修改吗?如何修改?

    网页的滚动条样式可以修改的,主要是使用css来控制那如何修改呢?如下代码:<div class="inner"> <div class="innerbox"> <p style="height:200px;">这是内容111</p> <p style="hei…

    2021/2/28 21:15:24
  • css如何实现6张图片均匀排列在一行?

    css部分如下:img{width:120px; height:80px;float:left;margin-right:16px;}.img3{margin-right:0;}html部分如下:<img src="images/001.jpg" /><img src="images/002.jpg" /><img src="images/003.jpg" /><img src=…

    2021/2/28 21:10:01