zoukankan      html  css  js  c++  java
  • jquery做的滑动按钮开关

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>jquery做的滑动按钮开关</title>
    <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
    </head>
    <style>
    .switch{
    100px;
    margin: 100px 0px 0 100px;
    }
    .btn_fath{
    margin-top: 10px;
    position: relative;
    border-radius: 20px;
    }

    .btn1{
    float: left;
    }

    .btn2{
    float: right;
    }
    .btnSwitch{
    height: 40px;
    50px;
    border:none;
    color: #fff;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    z-index: 1;
    }

    .move{
    z-index: 100;
    40px;
    border-radius: 20px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    border: 1px solid #828282;
    background-color: #f1eff0;
    box-shadow: 1px 2px 2px 1px #fff inset,0 0 5px 1px #999;
    }
    .on .move{
    left: 60px;
    }
    .on.btn_fath{
    background-color: #5281cd;
    }
    .off.btn_fath{
    background-color: #828282;
    }
    </style>
    <body>
    <div class="switch">
    <div class="btn_fath clearfix on" onclick="toogle(this)">
    <div class="move" data-state="on"></div>
    <div class="btnSwitch btn1">ON</div>
    <div class="btnSwitch btn2 ">OFF</div>
    </div>

    <div class="btn_fath clearfix off" onclick="toogle(this)">
    <div class="move" data-state="off"></div>
    <div class="btnSwitch btn1">ON</div>
    <div class="btnSwitch btn2 ">OFF</div>
    </div>
    </div>

    <script type="text/javascript" src="js/jquery.min.js"></script>
    <script type="text/javascript" src="js/bootstrap.min.js"></script>
    <script type="text/javascript">
    function toogle(th){
    var ele = $(th).children(".move");
    if(ele.attr("data-state") == "on"){
    ele.animate({left: "0"}, 300, function(){
    ele.attr("data-state", "off");
    alert("关!");
    });
    $(th).removeClass("on").addClass("off");
    }else if(ele.attr("data-state") == "off"){
    ele.animate({left: '60px'}, 300, function(){
    $(this).attr("data-state", "on");
    alert("开!");
    });
    $(th).removeClass("off").addClass("on");
    }
    }
    </script>
    </body>
    </html>
  • 相关阅读:
    运算放大器和比较器的区别
    求和电路
    差分放大电路
    含T型网络的反相放大器
    三运放仪用放大器
    cmd window关闭端口程序
    List及其实现类
    docker-compose安装elasticsearch集群+kibana
    sp_spaceused 查询表或者库的大小
    转载:Windows下利用bat批量打开程序
  • 原文地址:https://www.cnblogs.com/cx709452428/p/6377311.html
Copyright © 2011-2022 走看看