您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > 表单按钮 >

    html5实现开关风格的Checkbox / Radio效果

    时间:2013-12-19 08:56 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    运行代码保存代码复制代码 提示:您可以先修改部分代码再运行,保存代码功能在Firefox下无效。
    • 一款用HTML5实现的Checkbox / Radio选择效果,类似开关,鼠标点击选中的时候,会向右拨动,现在手机上很流行的一种开关效果,用HTML5可以很轻松就实现 ,学习HTML5的可不要错过这个Checkbox复选框 / Radio单选框效果。
    • <!DOCTYPE html>
      <html>
      <head>
      <meta charset="UTF-8">
      <title>html5类似开关的Checkbox / Radio[www.codesocang.com]</title>
      <style>html, body, div, span, applet, object, iframe,
      h1, h2, h3, h4, h5, h6, p, blockquote, pre,
      a, abbr, acronym, address, big, cite, code,
      del, dfn, em, img, ins, kbd, q, s, samp,
      small, strike, strong, sub, sup, tt, var,
      b, u, i, center,
      dl, dt, dd, ol, ul, li,
      fieldset, form, label, legend,
      table, caption, tbody, tfoot, thead, tr, th, td,
      article, aside, canvas, details, embed,
      figure, figcaption, footer, header, hgroup,
      menu, nav, output, ruby, section, summary,
      time, mark, audio, video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
      }
      /* HTML5 display-role reset for older browsers */
      article, aside, details, figcaption, figure,
      footer, header, hgroup, menu, nav, section {
        display: block;
      }
      body {
        line-height: 1;
      }
      ol, ul {
        list-style: none;
      }
      blockquote, q {
        quotes: none;
      }
      blockquote:before, blockquote:after,
      q:before, q:after {
        content: '';
        content: none;
      }
      table {
        border-collapse: collapse;
        border-spacing: 0;
      }
      /* CHECKBOXES */
      #check_frame {
        position: absolute;
        top: -75px; left: 0; right: 0; bottom: 0;
        width: 150px; height: 40px;
        padding: 10px; margin: auto;
        border: 1px solid #EEE;
      }
      #check_frame .checkbox { display: none; }
      #check_frame  .trigger {
        cursor: pointer;
        position: relative;
        float: left;
        width: 30px; height: 20px;
        margin: 10px;
        background: #666;
        overflow: hidden;
        -webkit-transition: background .15s linear;
      }
      #check_frame .checkbox:checked + .trigger { background: #00C5FF; }
      #check_frame .trigger:before {
        content: '';
        position: absolute;
        top: 0; left: 0; bottom: 0;
        width: 10px; height: 10px;
        margin: auto 5px;
        box-shadow: 0 0 0 100px hsla(0, 0%, 0%, .3);
        -webkit-transition: left .15s linear;
      }
      #check_frame .checkbox:checked + .trigger:before { left: 10px; }
      /* RADIO BUTTONS */
      #radio_frame {
        position: absolute;
        top: 75px; left: 0; right: 0; bottom: 0;
        width: 150px; height: 40px;
        padding: 10px; margin: auto;
        border-radius: 40px;
        border: 1px solid #EEE;
      }
      #radio_frame .radio { display: none; }
      #radio_frame  .trigger {
        cursor: pointer;
        position: relative;
        float: left;
        width: 30px; height: 20px;
        margin: 10px;
        border-radius: 20px;
        background: #666;
        overflow: hidden;
        -webkit-transition: background .15s linear;
      }
      #radio_frame .radio:checked + .trigger { background: #00C5FF; }
      #radio_frame .trigger:before {
        content: '';
        position: absolute;
        top: 0; left: 0; bottom: 0;
        width: 10px; height: 10px;
        margin: auto 5px;
        border-radius: 100%;
        box-shadow: 0 0 0 100px hsla(0, 0%, 0%, .3);
        -webkit-transition: left .15s linear;
      }
      #radio_frame .radio:checked + .trigger:before { left: 10px; }</style>
      </head>
      <body>
      <section id="check_frame">
      <input id="check_1" class="checkbox" name="check" type="checkbox" checked>
      <label for="check_1" class="trigger"></label>
      <input id="check_2" class="checkbox" name="check" type="checkbox">
      <label for="check_2" class="trigger"></label>
      <input id="check_3" class="checkbox" name="check" type="checkbox">
      <label for="check_3" class="trigger"></label>
      </section>
      <section id="radio_frame">
      <input id="radio_1" class="radio" name="radio" type="radio" checked>
      <label for="radio_1" class="trigger"></label>
      <input id="radio_2" class="radio" name="radio" type="radio">
      <label for="radio_2" class="trigger"></label>
      <input id="radio_3" class="radio" name="radio" type="radio">
      <label for="radio_3" class="trigger"></label>
      </section>
      </body>
      </html>

    html5实现开关风格的Checkbox / Radio效果由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/biaodan/6517.html
    标签:网站源码