• 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>

  • 相关阅读:
    程序是怎样跑起来的 第三章
    C#4.5-4.7学习总结
    第二周学习总结
    程序是如何跑起来的 第二章
    第一章读后感
    师生关系读后感
    C#学习总结
    我与计算机
    读《程序怎样跑起来》第一章有感
    读师生关系有感
  • 原文地址:https://www.cnblogs.com/leiyf/p/6214760.html
Copyright © 2020-2023  润新知