Home > Web Front-end > HTML Tutorial > 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
Release: 2016-06-24 11:44:16
Original
1147 people have browsed it

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);                }
Copy after login

Page html

<span id="test" class="toggle"><i></i></span>   
Copy after login

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>
Copy after login

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

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template