本文实例讲述了javascript实现动态统计图的代码。分享给大家供大家参考。具体如下:
运行效果截图如下:
具体代码如下
html代码:
<div id="content"> <div class="legend"> <h1>汽车销量:</h1> <div class="skills"> <ul> <li class="jq">大众</li> <li class="css">丰田</li> <li class="html">别克</li> <li class="php">福特</li> <li class="sql">长安</li> </ul> </div> </div> <div id="diagram"></div> </div> <div class="get"> <div class="arc"> <span class="text">大众</span> <input type="hidden" class="percent" value="95" /> <input type="hidden" class="color" value="#97BE0D" /> </div> <div class="arc"> <span class="text">丰田</span> <input type="hidden" class="percent" value="90" /> <input type="hidden" class="color" value="#D84F5F" /> </div> <div class="arc"> <span class="text">别克</span> <input type="hidden" class="percent" value="80" /> <input type="hidden" class="color" value="#88B8E6" /> </div> <div class="arc"> <span class="text">福特</span> <input type="hidden" class="percent" value="53" /> <input type="hidden" class="color" value="#BEDBE9" /> </div> <div class="arc"> <span class="text">长安</span> <input type="hidden" class="percent" value="45" /> <input type="hidden" class="color" value="#EDEBEE" /> </div> </div>
css代码:
#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; }
js代码:
var o = { init: function () { this.diagram(); }, random: function (l, u) { return Math.floor((Math.random() * (u - l + 1)) + l); }, diagram: function () { var r = Raphael('diagram', 600, 600), rad = 73; r.circle(300, 300, 85).attr({ stroke: 'none', fill: '#193340' }); var title = r.text(300, 300, 'loading...').attr({ font: '20px Arial', fill: '#fff' }).toFront(); r.customAttributes.arc = function (value, color, rad) { var v = 3.6 * value, alpha = v == 360 ? 359.99 : v, random = o.random(91, 240), a = (random - alpha) * Math.PI / 180, b = random * Math.PI / 180, sx = 300 + rad * Math.cos(b), sy = 300 - rad * Math.sin(b), x = 300 + rad * Math.cos(a), y = 300 - rad * Math.sin(a), path = [['M', sx, sy], ['A', rad, rad, 0, +(alpha > 180), 1, x, y]]; return { path: path, stroke: color } } $('.get').find('.arc').each(function (i) { var t = $(this), color = t.find('.color').val(), value = t.find('.percent').val(), text = t.find('.text').text(); rad += 30; var z = r.path().attr({ arc: [value, color, rad], 'stroke-width': 26 }); z.mouseover(function () { this.animate({ 'stroke-width': 50, opacity: .75 }, 1000, 'elastic'); if (Raphael.type != 'VML') //solves IE problem this.toFront(); title.animate({ opacity: 0 }, 500, '>', function () { this.attr({ text: text + '\n' + value + '%' }).animate({ opacity: 1 }, 500, '<'); }); }).mouseout(function () { this.animate({ 'stroke-width': 26, opacity: 1 }, 1000, 'elastic'); }); }); } } $(function () { o.init(); });
希望本文所述对大家学习javascript程序设计有所帮助。
本文向大家介绍jQuery圆形统计图开发实例,包括了jQuery圆形统计图开发实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了jQuery圆形统计图开发的方法。分享给大家供大家参考。具体分析如下: 这里我们要给大家介绍一款圆形统计图circliful,它基于HTML5的画布和jQuery,无需使用图像轻松实现圆形统计图,而且有很多属性设置,使用起来非常方便。效果图如下: 首先我们需要将
本文向大家介绍python实现Pyecharts实现动态地图(Map、Geo),包括了python实现Pyecharts实现动态地图(Map、Geo)的使用技巧和注意事项,需要的朋友参考一下 一些经常画图的开发人员大概都用过echart,不过小白用Python比较多,学习了python下的Pyecharts,发现这个包真的很强大。下面是小白对动态地图的实践案例: 假如有这样一组数据,全国每个城市的
本文向大家介绍基于javascript实现动态显示当前系统时间,包括了基于javascript实现动态显示当前系统时间的使用技巧和注意事项,需要的朋友参考一下 本文实例讲解了javascript实现动态显示当前系统时间的详细代码,具体内容如下 (1)时间日期信息,应该在一个<div>中来显示 (2)定时器:每隔一秒再次访问系统时间,window对象的setTimeout() (3)时钟显示的时机(
本文向大家介绍PHP实现绘制3D扇形统计图及图片缩放实例,包括了PHP实现绘制3D扇形统计图及图片缩放实例的使用技巧和注意事项,需要的朋友参考一下 1、利用php gd库的函数绘制3D扇形统计图 效果: 2、对图片进行缩放 效果:
本文向大家介绍Android 实现会旋转的饼状统计图实例代码,包括了Android 实现会旋转的饼状统计图实例代码的使用技巧和注意事项,需要的朋友参考一下 Android 实现会旋转的饼状统计图实例代码 最近在做一个项目,由于有需要统计的需要,于是就做成了下面饼状统计图。 下图是效果图: 大致思路是: 关于的介绍这里不做详细介绍,如果想深入请点击开源项目MPAndroidChart 下面是其实现:
本文向大家介绍javascript实现瀑布流动态加载图片原理,包括了javascript实现瀑布流动态加载图片原理的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了js瀑布流加载效果,动态加载图片,供大家参考,具体内容如下 鼠标滚动事件,当鼠标滚动到下边,动态加载图片。 1. HTML代码 2. CSS代码 3. JavaScript代码 以上就是本文的全部内容