zoukankan      html  css  js  c++  java
  • htm5 实现圆形进度条

    <!doctype html>
    <html>
    <head>
    <title>yxjdt</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
    <link href="../radialIndicator/css/radialindicator.css" rel="stylesheet" type="text/css" />
    <script src="../js/jquery.min.js"></script>

    <script src="../radialIndicator/js/radialIndicator.js"></script>

    <script type="text/javascript">
    //$('#radialIndicatorContext').radialIndicator();
    $(document).ready(function(){
    $("#radialIndicatorContext").radialIndicator({
    barColor : "#66a4d8",
    barWidth : 10,
    initValue: 10,
    roundCorner: true,
    percentage: true

    });
    });
    var radialObj = $("#radialIndicatorContext").data("radialIndicator");
    setTimeout(function(){

    //现在,您可以使用实例来调用不同的方法
    //像这样:
    radialObj.animate(60);
    },3000);


    </script>
    </head>

    <body>

    <div id="radialIndicatorContext"></div>


    </body>
    </html>

  • 相关阅读:
    HDU
    纯C++去雾算法
    拓扑排序
    SG 函数初步 HDU 1536 &amp;&amp; HDU 1944
    <html>
    XML制作RSS源
    ACM退役前2个月总结
    javascript 的 jasmine 的測试语句
    Vue.js父与子组件之间传参
    $.contents().find设置的data在iframe子页面无法获取值
  • 原文地址:https://www.cnblogs.com/leiyf/p/6214760.html
Copyright © 2011-2022 走看看