How do you create a toggle button?

后端 未结 15 2882
名媛妹妹
名媛妹妹 2020-11-27 11:46

I want to create a toggle button in html using css. I want it so that when you click on it , it stays pushed in and than when you click it on it again it pops out.

相关标签:
15条回答
  • 2020-11-27 11:58

    here is an example using pure css:

      .cmn-toggle {
        position: absolute;
        margin-left: -9999px;
        visibility: hidden;
      }
      .cmn-toggle + label {
        display: block;
        position: relative;
        cursor: pointer;
        outline: none;
        user-select: none;
      }
      input.cmn-toggle-round + label {
        padding: 2px;
        width: 120px;
        height: 60px;
        background-color: #ffffdffffd;
        border-radius: 60px;
      }
      input.cmn-toggle-round + label:before,
      input.cmn-toggle-round + label:after {
        display: block;
        position: absolute;
        top: 1px;
        left: 1px;
        bottom: 1px;
        content: "";
      }
      input.cmn-toggle-round + label:before {
        right: 1px;
        background-color: #f1f1f1;
        border-radius: 60px;
        transition: background 0.4s;
      }
      input.cmn-toggle-round + label:after {
        width: 58px;
        background-color: #fff;
        border-radius: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        transition: margin 0.4s;
      }
      input.cmn-toggle-round:checked + label:before {
        background-color: #8ce196;
      }
      input.cmn-toggle-round:checked + label:after {
        margin-left: 60px;
      }
    <div class="switch">
      <input id="cmn-toggle-1" class="cmn-toggle cmn-toggle-round" type="checkbox">
      <label for="cmn-toggle-1"></label>
    </div>

    0 讨论(0)
  • 2020-11-27 12:01

    The good semantic way would be to use a checkbox, and then style it in different ways if it is checked or not. But there are no good ways do to it. You have to add extra span, extra div, and, for a really nice look, add some javascript.

    So the best solution is to use a small jQuery function and two background images for styling the two different statuses of the button. Example with an up/down effect given by borders:

    $(document).ready(function() {
      $('a#button').click(function() {
        $(this).toggleClass("down");
      });
    });
    a {
      background: #ccc;
      cursor: pointer;
      border-top: solid 2px #eaeaea;
      border-left: solid 2px #eaeaea;
      border-bottom: solid 2px #777;
      border-right: solid 2px #777;
      padding: 5px 5px;
    }
    
    a.down {
      background: #bbb;
      border-top: solid 2px #777;
      border-left: solid 2px #777;
      border-bottom: solid 2px #eaeaea;
      border-right: solid 2px #eaeaea;
    }
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <a id="button" title="button">Press Me</a>

    Obviously, you can add background images that represent button up and button down, and make the background color transparent.

    0 讨论(0)
  • 2020-11-27 12:01

    There's a jquery plugin by Swizec, which can do this among other things: https://github.com/Swizec/styled-button

    (The old link was http://swizec.com/code/styledButton/, I didn't fully test the replacement, just found it w/Google.)

    0 讨论(0)
  • 2020-11-27 12:03

    Try this bit:

    input type="button" 
                               data-bind="css:{on:toggleButton, off:toggleButton!=true},value:toggleButton,click: function() { $data.toggleButton(!($data.toggleButton()))}" />
    
    in viewModel
    self.toggleButton = ko.observable(false);
    
    0 讨论(0)
  • 2020-11-27 12:05

    You can use the "active" pseudoclass (it won't work on IE6, though, for elements other than links)

    a:active
    {
        ...desired style here...
    }
    
    0 讨论(0)
  • 2020-11-27 12:06

    JQuery UI makes light work out of creating toggle buttons. Just put this

    <label for="myToggleButton">my toggle button caption</label>
    <input type="checkbox" id="myToggleButton" />
    

    on your page and then in your body onLoad or your $.ready() (or some object literals init() function if your building an ajax site..) drop some JQuery like so:

    $("#myToggleButton").button()
    

    thats it. (don't forget the < label for=...> because JQueryUI uses that for the body of the toggle button..)

    From there you just work with it like any other input="checkbox" because that is what the underlying control still is but JQuery UI just skins it to look like a pretty toggle button on screen.

    0 讨论(0)
提交回复
热议问题