123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>HTML5统计图表数据初始动画DEMO演示</title>
- <link rel="stylesheet" href="css/reset.css">
- <link rel="stylesheet" href="css/style.css" media="screen" type="text/css" />
- <script src="js/modernizr.js"></script>
- </head>
- <body>
- <div style="text-align:center;clear:both;">
- <script src="/gg_bd_ad_720x90.js" type="text/javascript"></script>
- <script src="/follow.js" type="text/javascript"></script>
- </div>
- <div class="charts-container cf">
- <div class="chart" id="graph-1-container">
- <h2 class="title">Hours worked</h2>
- <div class="chart-svg">
- <svg class="chart-line" id="chart-1" viewBox="0 0 80 40">
- <defs>
- <clipPath id="clip" x="0" y="0" width="80" height="40" >
- <rect id="clip-rect" x="-80" y="0" width="77" height="38.7"/>
- </clipPath>
- <linearGradient id="gradient-1">
- <stop offset="0" stop-color="#00d5bd" />
- <stop offset="100" stop-color="#24c1ed" />
- </linearGradient>
- <linearGradient id="gradient-2">
- <stop offset="0" stop-color="#954ce9" />
- <stop offset="0.3" stop-color="#954ce9" />
- <stop offset="0.6" stop-color="#24c1ed" />
- <stop offset="1" stop-color="#24c1ed" />
- </linearGradient>
- <linearGradient id="gradient-3" x1="0%" y1="0%" x2="0%" y2="100%">>
- <stop offset="0" stop-color="rgba(0, 213, 189, 1)" stop-opacity="0.07"/>
- <stop offset="0.5" stop-color="rgba(0, 213, 189, 1)" stop-opacity="0.13"/>
- <stop offset="1" stop-color="rgba(0, 213, 189, 1)" stop-opacity="0"/>
- </linearGradient>
- <linearGradient id="gradient-4" x1="0%" y1="0%" x2="0%" y2="100%">>
- <stop offset="0" stop-color="rgba(149, 76, 233, 1)" stop-opacity="0.07"/>
- <stop offset="0.5" stop-color="rgba(149, 76, 233, 1)" stop-opacity="0.13"/>
- <stop offset="1" stop-color="rgba(149, 76, 233, 1)" stop-opacity="0"/>
- </linearGradient>
- </defs>
- </svg>
- <h3 class="valueX">time</h3>
- </div>
- <div class="chart-values">
- <p class="h-value">1689h</p>
- <p class="percentage-value"></p>
- <p class="total-gain"></p>
- </div>
- <div class="triangle green"></div>
- </div>
- <div class="chart" id="graph-2-container">
- <h2 class="title">Hours worked</h2>
- <div class="chart-svg">
- <svg class="chart-line" id="chart-2" viewBox="0 0 80 40">
- </svg>
- <h3 class="valueX">time</h3>
- </div>
- <div class="chart-values">
- <p class="h-value">322h</p>
- <p class="percentage-value"></p>
- <p class="total-gain"></p>
- </div>
- <div class="triangle red"></div>
- </div>
- <div class="chart circle" id="circle-1">
- <h2 class="title">IBApps Website</h2>
- <div class="chart-svg align-center">
- <h2 class="circle-percentage"></h2>
- <svg class="chart-circle" id="chart-3" width="50%" viewBox="0 0 100 100">
- <path class="underlay" d="M5,50 A45,45,0 1 1 95,50 A45,45,0 1 1 5,50"/>
- </svg>
- </div>
- <div class="triangle green"></div>
- </div>
- <div class="chart circle" id="circle-2">
- <h2 class="title">IBApps Website</h2>
- <div class="chart-svg align-center">
- <h2 class="circle-percentage"></h2>
- <svg class="chart-circle" id="chart-4" width="50%" viewBox="0 0 100 100">
- <path class="underlay" d="M5,50 A45,45,0 1 1 95,50 A45,45,0 1 1 5,50"/>
- </svg>
- </div>
- <div class="triangle red"></div>
- </div>
- </div>
- <script src='js/jquery.js'></script>
- <script src='js/snap.svg-min.js'></script>
- <script src="js/index.js"></script>
- </body>
- </html>
|