jquery - 根据值 : Jquery Mobile 更改进度条的颜色

标签 jquery css jquery-mobile progress-bar checkboxlist

我目前有一个绿色的进度条。我希望进度条根据值而变化,理想情况下从红色开始,然后逐渐变为黄色,然后当进度条快满时显示绿色。演示= http://jsfiddle.net/R24pf/

    <!DOCTYPE html>
<html>

<head>
    <title>Bars for checklist</title>
    <meta name="viewport" content="width=device-width" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />

    <meta charset="utf-8">



    <link rel="stylesheet" href="jqm/demos/css/themes/default/jquery.mobile-1.3.2.min.css" />


    <script src="jqm/demos/js/jquery.js">
    </script>

    <script src="jqm/demos/js/jquery.mobile-1.3.2.min.js">
    </script>

    <script>
        $(document).on('pagebeforeshow', '#checklist', function () {
            $('input[type="checkbox"]').each(function () {
                ($(this).is(':checked')) ? $(this).parent().parent().addClass('checked') : $(this).parent().parent().addClass('not-checked');
            });
        });


        $(document).on('click', '.checkBoxLeft', function () {
            if ($(this).find('input[type="checkbox"]').is(':checked')) {
                $(this).removeClass('checked').addClass('not-checked');
                $(this).find('input[type="checkbox"]').attr('checked', false);
            } else {
                $(this).removeClass('not-checked').addClass('checked');
                $(this).find('input[type="checkbox"]').attr('checked', true);
            }





            var total = $("#theList input[type=checkbox]").length;
            var numChecked = $("#theList input[type=checkbox]:checked").length;
            var prog = numChecked * 100 / total;
            $("#progress").css("width", prog + "%");

        });
    </script>
</head>

<body>




    <div data-role="main" class="ui-content">
        <div data-role="collapsible">
            <h1>Checklist with progress made</h1>



            <div data-role="content">
                <ul data-role="listview" id="theList" data-inset="true">
                    <li>



                        <div class="checkBoxLeft">
                            <input type="checkbox" name="checkbox-0" id="checkbox-0" class="hidden-checkbox" />
                        </div>
                        <a href="" class="detailListText">1</a>
                    </li>
                    <li>
                        <div class="checkBoxLeft">
                            <input type="checkbox" name="checkbox-0" id="checkbox-0" class="hidden-checkbox" />
                        </div>
                        <a href="" class="detailListText">2</a>
                    </li>
                    <li>
                        <div class="checkBoxLeft">
                            <input type="checkbox" name="checkbox-0" id="checkbox-0" class="hidden-checkbox" />
                        </div>
                        <a href="" class="detailListText">3</a>
                    </li>
                    <li>
                        <div class="checkBoxLeft">
                            <input type="checkbox" name="checkbox-0" id="checkbox-0" class="hidden-checkbox" />
                        </div>
                        <a href="" class="detailListText">4</a>
                    </li>

                </ul>
            </div>
        </div>

        <div class="meter green nostripes">
            <span id="progress" style="width: 0%"></span>
        </div>
    </div>






    <style>
        .detailListText {
            margin: 0 0 0 20px;
        }
        .checkBoxLeft {
            position: absolute;
            left: 10px;
            top: 28%;
            width: 18px;
            height: 18px;
            background: #d9d9d9;
            border-radius: 3px;
        }
        .hidden-checkbox {
            display: none;
        }
        .not-checked {
            background-position: 18px 0;
            background-color: #d9d9d9;
        }
        .checked {
            background-position: 0 0;
            background-color: #6496bc;
        }
        .meter {
            height: 20px;
            position: relative;
            margin: 60px 0 20px 0;
            background: #555;
            -moz-border-radius: 25px;
            -webkit-border-radius: 25px;
            border-radius: 25px;
            padding: 10px;
            -webkit-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
            -moz-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
        }
        .meter > span {
            display: block;
            height: 100%;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
            -moz-border-radius-topright: 8px;
            -moz-border-radius-bottomright: 8px;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            -webkit-border-top-left-radius: 20px;
            -webkit-border-bottom-left-radius: 20px;
            -moz-border-radius-topleft: 20px;
            -moz-border-radius-bottomleft: 20px;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            background-color: rgb(43, 194, 83);
            background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(43, 194, 83)), color-stop(1, rgb(84, 240, 84)));
            background-image: -moz-linear-gradient(center bottom, rgb(43, 194, 83) 37%, rgb(84, 240, 84) 69%);
            -webkit-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
            -moz-box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
            box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }
        .meter > span:after,
        .animate > span > span {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent));
            background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent);
            z-index: 1;
            -webkit-background-size: 50px 50px;
            -moz-background-size: 50px 50px;
            background-size: 50px 50px;
            -webkit-animation: move 2s linear infinite;
            -moz-animation: move 2s linear infinite;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
            -moz-border-radius-topright: 8px;
            -moz-border-radius-bottomright: 8px;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            -webkit-border-top-left-radius: 20px;
            -webkit-border-bottom-left-radius: 20px;
            -moz-border-radius-topleft: 20px;
            -moz-border-radius-bottomleft: 20px;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            overflow: hidden;
        }
        .animate > span:after {
            display: none;
        }
    </style>
    </div>
</body>

</html>

最佳答案

这可以通过在“numChecked”变量下添加一个简单的 if else 语句来完成,当然这也可以使用数组甚至 switch 语句来完成,但是这段代码应该让你上路,这样你就可以将来改进它。

示例: http://jsfiddle.net/7W72B/

        if(numChecked == 1){
            $("#progress").css('background','red');
        } else if(numChecked == 2){
            $("#progress").css('background','orange');
        } else if(numChecked == 3){
            $("#progress").css('background','yellow');
        } else {
            $("#progress").css('background','lime');
        }

我希望这能让你开始,祝你好运。

关于jquery - 根据值 : Jquery Mobile 更改进度条的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21954931/

相关文章:

javascript - 如何知道递归的异步任务何时完成

android - 无法调用 determinedVisibility() - 从未看到 pid 的连接 - 无法导航到 Html 页面

javascript - 后退按钮未加载页面内容 - JQuery Mobile

javascript - 使用 Javascript 在 Rails 应用程序中显示/隐藏 DIV 未按预期工作

javascript - 使用 ParsleyJS 验证并使用 twitter 工具提示显示错误

javascript - jquery函数通过相同的元素将数组相交

html - 探索 GWT 客户端代码中的样式元素

html - 使用 CSS 动画交换位置

jquery - 整页滚动

jquery - 如何使用 Jquery 替换整个 HTML 页面中的占位符?