如果用jquery做一个效果 如图,圆圈从左到右绿色部分逐一增加,数字也要逐一增加

注意这个增加是渐变的,就是:1,2,3,4,5,6,7,8....95,96,97,98,99,100... 注意这个增加是渐变的,就是:1,2,3,4,5,6,7,8....95,96,97,98,99,100 展开
 我来答
匿名用户
2015-11-30
展开全部
<!DOCTYPE HTML>
<html>

<head>
    <meta charset="utf-8">
    <title></title>
    <style>
        body {
    background-color: #2C3437;
}

.pie {
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 100px;
    position: absolute;
}

.pie1 {
    clip: rect(0px,200px,200px,100px);
}

.pie2 {
    clip: rect(0px,100px,200px,0px);
}

.hold {
    width: 200px;
    height: 200px;
    position: absolute;
    z-index: 1;
}

.hold1 {
    clip: rect(0px,200px,200px,100px);
}

.hold2 {
    clip: rect(0px,100px,200px,0px);
}

.bg {
    width: 200px;
    height: 200px;
    background-color: green;
    border-radius: 100px;
    position: absolute;
}

.time {
    width: 160px;
    height: 160px;
    margin: 20px 0 0 20px;
    background-color: #2C3437;
    color: white;
    border-radius: 100px;
    position: absolute;
    z-index: 1;
    text-align: center;
    line-height: 160px;
}
    </style>
</head>

<body>
    <div class="hold hold1">
        <div class="pie pie1"></div>
    </div>
    <div class="hold hold2">
        <div class="pie pie2"></div>
    </div>
    <div class="bg"></div>
    <div class="time">0</div>
    <script src="jquery-1.8.0.min.js"></script>
    <script>
        i = 0;
        j = 0;
        count = 0;

        function start1() {
            i = i + 0.6;
            count = count + 1;
            if (count >= 300) {
                count = 0;
                clearInterval(t1);
                t2 = setInterval("start2()", 10);
            };
            $(".time").text(Math.ceil(i*100/360));
            $(".pie1").css("-o-transform", "rotate(" + i + "deg)");
            $(".pie1").css("-moz-transform", "rotate(" + i + "deg)");
            $(".pie1").css("-webkit-transform", "rotate(" + i + "deg)");
        };

        function start2() {
            j = j + 0.6;
            count = count + 1;
            if (count >= 300) {
                count = 0;
                clearInterval(t2);
            };
            $(".time").text(Math.ceil((j+i)*100/360));
            $(".pie2").css("-o-transform", "rotate(" + j + "deg)");
            $(".pie2").css("-moz-transform", "rotate(" + j + "deg)");
            $(".pie2").css("-webkit-transform", "rotate(" + j + "deg)");
        };
        t1 = setInterval("start1()", 10);
    </script>
</body>

</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
纯洁的小树
2015-11-30 · TA获得超过3386个赞
知道大有可为答主
回答量:2536
采纳率:71%
帮助的人:476万
展开全部
这种效果都是jq结合canvas实现的。看看这个插件吧!附件不知怎么滴传不上来。百度一下“jQuery轻量级圆形进度指示器插件 ”应该可以找到
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式