jquery开关按钮效果

Posted coldfishdt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery开关按钮效果相关的知识,希望对你有一定的参考价值。

 

.circular1{
            width: 50px;
            height: 30px;
            border-radius: 16px;
            background-color: #ccc;
            transition: .3s;
            cursor: pointer;
 }
.round-button1{
            width: 30px;
            height: 30px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 1px 5px rgba(0,0,0,.5);
            transition: .3s;
            position: relative;
            left: 0;
}
.round-button1:hover{
            transform: scale(1.2);
            box-shadow: 0 1px 8px rgba(0,0,0,.5);
}
<div class="circular1">
    <div class="round-button1"></div>
</div>
$(function () {
        $(\'.circular1\').click(function () {
            var left = $(\'.round-button1\').css(\'left\');
            left = parseInt(left);
            if (left == 0) {
                $(\'.round-button1\').css({\'left\': \'22px\', \'background-color\': \'#F00\'});
                $(this).css({\'background-color\': \'#e7e7e7\', \'box-shadow\': \'0 0 5px #999 inset\'})
            } else {
                $(\'.round-button1\').css({\'left\': \'0\', \'background-color\': \'#fff\'})

            }
        })
    })

以上是关于jquery开关按钮效果的主要内容,如果未能解决你的问题,请参考以下文章

jquery开关按钮效果

jquery实现light7的开关按钮的代码

常用的几个JQuery代码片段

12个用得着的 JQuery 代码片段

单击单选按钮以使用 jquery 切换开关

基于Bootstrap的jQuery开关按钮插件