如何利用前端基础制作html开关图标

发布时间:2020-11-18 11:08:50 作者:小新
来源:亿速云 阅读:311

小编给大家分享一下如何利用前端基础制作html开关图标,希望大家阅读完这篇文章后大所收获,下面让我们一起去探讨吧!

我们先来看下效果图:

如何利用前端基础制作html开关图标

html代码:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>开关图标</title>
</head>
<body>
    <div>
        <div>
            <input type="checkbox" id="toggle-button" name="switch" οnclick="SwitchClick()" checked>
            <label for="toggle-button">
                <span></span>
                <span class="text on">ON</span>
                <span class="text off">OFF</span>
            </label>
        </div>
    </div>
</body>
</html>

css样式:

<style type="text/css">
        body {
            text-align: center
        }
        .SwitchIcon {
            margin: 200px auto;
        }
        #toggle-button {
            display: none;
        }
        .button-label {
            position: relative;
            display: inline-block;
            width: 80px;
            height: 30px;
            background-color: #ccc;
            box-shadow: #ccc 0px 0px 0px 2px;
            border-radius: 30px;
            overflow: hidden;
        }
        .circle {
            position: absolute;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #fff;
        }
        .button-label .text {
            line-height: 30px;
            font-size: 18px;
            text-shadow: 0 0 2px #ddd;
        }
        .on {
            color: #fff;
            display: none;
            text-indent: -45px;
        }
        .off {
            color: #fff;
            display: inline-block;
            text-indent: 34px;
        }
        .button-label .circle {
            left: 0;
            transition: all 0.3s;
        }
        #toggle-button:checked + label.button-label .circle {
            left: 50px;
        }
        #toggle-button:checked + label.button-label .on {
            display: inline-block;
        }
        #toggle-button:checked + label.button-label .off {
            display: none;
        }
        #toggle-button:checked + label.button-label {
            background-color: #19e236;
        }
        .div {
            height: 20px;
            width: 30px;
            background: #51ccee;
        }
    </style>

js逻辑:

<script type="text/javascript">
        //窗体加载
        window.onload = function () {
            var onoffswitch = document.getElementById("toggle-button");
            onoffswitch.checked = true;
        }
        //测试开始
        function SwitchClick() {
            var onoffswitch = document.getElementById("toggle-button");
            var label = document.getElementById("batteryIconContent");
            if (onoffswitch.checked) {
                //调用后台
            }
            else {
                //调用后台
            }
        }
    </script>

看完了这篇文章,相信你对如何利用前端基础制作html开关图标有了一定的了解,想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

推荐阅读:
  1. 前端 html基础第一节
  2. 前端基础入门一(HTML)

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

html 前端 开关图标

上一篇:css比html更复杂还要用的原因

下一篇:css的color属性有没有继承性

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》