Home  >  Article  >  Web Front-end  >  css3 realizes the "switching label" of mobile phone effect_html/css_WEB-ITnose

css3 realizes the "switching label" of mobile phone effect_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:44:161118browse

Style style

        .toggle {            position: relative;            display: inline-block;            width: 60px;            height: 30px;            border: 1px solid #E5E5E5;            background-color: #fff;            background-clip: content-box;            -webkit-border-radius: 30px;            border-radius: 30px;        }            .toggle i {                position: absolute;                top: 0;                left: 0;                display: inline-block;                content: "";                width: 30px;                height: 30px;                -webkit-box-shadow: 0 0 2px #bbb;                background-color: #fff;                background-clip: content-box;                -webkit-border-radius: 100%;                border-radius: 100%;                -webkit-transition: 300ms linear;                transition: 300ms linear;                -webkit-transform: translate3D(0,0,0);                transform: translate3D(0,0,0);            }            .toggle.on {                border-color: #4089e8;                background-color: #4089e8;            }                .toggle.on i {                    -webkit-transform: translate3D(30px,0,0);                    transform: translate3D(30px,0,0);                }

Page html

<span id="test" class="toggle"><i></i></span>   

Script

    <script type="text/javascript">        $(function () {            $("#test").bind("click", function () {                var target = $(this);                if (target.hasClass("on")) target.removeClass("on");                else target.addClass("on");            });        });            </script>

Analysis and page renderings

Mainly using css3 transform: translate3D(0,0,0); and border-radius: 30px; to achieve

Maintenance of public components and private components can improve reusability

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn