jquery实现圆形百分比技能图表效果代码

代码语言:html

所属分类:图表

代码描述:jquery实现圆形百分比技能图表效果代码

代码标签: 百分比 技能 图表 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">



    <style>


        /* ------ layout
-----------------------------------------------*/

        html, body {
            margin: 0;
            padding: 0;
        }

        body {
            background: #f5f5f5;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 12px;
            color: #333;
            line-height: 18px;
        }

        #content {
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -340px 0 0 -450px;
            width: 900px;
            height: 600px;
        }

        .legend {
            float: left;
            width: 250px;
            margin-top: 140px;
        }

        #content h1 {
            font-family: 'Cabin Sketch', arial, serif;
            text-shadow: 3px 3px 0 #ddd;
            color: #193340;
            font-size: 40px;
            margin-bottom: 40px;
            text-align: right;
        }

        .skills {
            float: left;
            clear: both;
            width: 100%;
        }

        .skills ul,
        .skills li {
            display: block;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .skills li {
            float: right;
            clear: both;
            padding: 0 15px;
            height: 35px;
            line-height: 35px;
            color: #fff;
            margin-bottom: 1px;
            font-size: 18px;
        }

        .skills .jq {
      .........完整代码请登录后点击上方下载按钮下载查看

网友评论0