码迷,mamicode.com
首页 > Web开发 > 详细

Heatmap.js v2.0 – 最强大的 Web 动态热图

时间:2017-09-05 15:55:37      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:web   nim   rip   create   定义   stat   gen   order   defaults   

Heatmap 是用来呈现一定区域内的统计度量,最常见的网站访问热力图就是以特殊高亮的形式显示访客热衷的页面区域和访客所在的地理区域的图示。Heatmap.js 这个 JavaScript 库可以实现各种动态热力图的网页,帮助您研究和可视化用户的行为。

  Heatmap.js V2.0 是目前网络上最先进的热图可视化库。新的2.0版本 Heatmap.js 更快,拥有更强的渲染模块,使用更方便,因此您可以快速掌握和扩展自定义功能。

 

技术分享

 

插件下载     效果演示

下面是一个简单的调用示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// minimal heatmap instance configuration
var heatmapInstance = h337.create({
  // only container is required, the rest will be defaults
  container: document.querySelector(‘.heatmap‘)
});
 
// now generate some random data
var points = [];
var max = 0;
var width = 840;
var height = 400;
var len = 200;
 
while (len--) {
  var val = Math.floor(Math.random()*100);
  max = Math.max(max, val);
  var point = {
    x: Math.floor(Math.random()*width),
    y: Math.floor(Math.random()*height),
    value: val
  };
  points.push(point);
}
// heatmap data format
var data = {
  max: max,
  data: points
};
// if you have a set of datapoints always use setData instead of addData
// for data initialization
heatmapInstance.setData(data);

Heatmap.js v2.0 – 最强大的 Web 动态热图

标签:web   nim   rip   create   定义   stat   gen   order   defaults   

原文地址:http://www.cnblogs.com/h2zZhou/p/7478515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!