以下代码来自Mike Bostock的D3.js路径教程http://bost.ocks.org/mike/path/的最后/最后一个示例。它创建用户页面滚动活动的实时图表。如果您观察代码运行,您会注意到图表是连续运行的,线图从右向左滑动,无论是否有任何滚动活动。问题:下面的tick
函数是什么让它连续运行,如何更改以停止并开始点击事件?
(function() {
var n = 243,
duration = 750,
now = new Date(Date.now() - duration),
count = 0,
data = d3.range(n).map(function() { return 0; });
var margin = {top: 6, right: 0, bottom: 20, left: 40},
width = 960 - margin.right,
height = 120 - margin.top - margin.bottom;
var x = d3.time.scale()
.domain([now - (n - 2) * duration, now - duration])
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var line = d3.svg.line()
.interpolate("basis")
.x(function(d, i) { return x(now - (n - 1 - i) * duration); })
.y(function(d, i) { return y(d); });
var svg = d3.select("body").append("p").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.style("margin-left", -margin.left + "px")
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("defs").append("clipPath")
.attr("id", "clip")
.append("rect")
.attr("width", width)
.attr("height", height);
var axis = svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(x.axis = d3.svg.axis().scale(x).orient("bottom"));
var path = svg.append("g")
.attr("clip-path", "url(#clip)")
.append("path")
.datum(data)
.attr("class", "line");
var transition = d3.select({}).transition()
.duration(750)
.ease("linear");
d3.select(window)
.on("scroll", function() { ++count; });
(function tick() {
transition = transition.each(function() {
// update the domains
now = new Date();
x.domain([now - (n - 2) * duration, now - duration]);
y.domain([0, d3.max(data)]);
// push the accumulated count onto the back, and reset the count
data.push(Math.min(30, count));
count = 0;
// redraw the line
svg.select(".line")
.attr("d", line)
.attr("transform", null);
// slide the x-axis left
axis.call(x.axis);
// slide the line left
path.transition()
.attr("transform", "translate(" + x(now - (n - 1) * duration) + ")");
// pop the old data point off the front
data.shift();
}).transition().each("start", tick);
})();
})()
答案 0 :(得分:0)
首先,您缺少定义过渡的部分 它是某种类型的var,但未在您的代码段中定义 这有点重要,但不需要知道函数继续运行的原因。
您需要首先了解每个函数的两种形式的jquery。 http://api.jquery.com/each/ http://api.jquery.com/jquery.each/
transition = transition.each(function(){...})。transition()。each(" start",tick);
::请注意......隐藏了很多代码::
这基本上是一行代码。
对于过渡变量的每个孩子来说,如果有的话,运行" ..."它的代码。这是每个声明的第一个jquery。在这个函数里面,$(this)将等于转换的子obj。但是从不使用子对象。
完成所有迭代后,运行transition()函数。 (再次不确定那是什么)
最后,每个都会再次调用,但使用不同的形式。这次是说用字符串" start"运行tick函数。作为对象。这意味着在函数内部$(this)=" start"。 obj永远不会被使用。
因为从不使用调用对象,所以.each只是调用tick函数。
真的,这是一种非常奇怪的方式。不确定为什么会有如此大量使用.each。我的理解是。与其他迭代和调用回调的方法相比,它实际上有点慢。
UPDATE -
点击开始/停止我会在脚本顶部引入一个var。
var running = true;
(设置为false以启动为未运行)
然后用if语句包围tick函数的内容。
if(running)
{
transition = transition.each(function() { ... }).transition().each("start", tick);
}
然后创建一个或两个单击处理程序。 (对于一个切换或开始和停止按钮)
有很多方法可以实现这一目标。
$(#[button ID]).click( function(){
if(running)
{
running = false;
}
else
{
running = true;
tick();
}
});
这是一个基本的攻击计划。快速连续点击按钮可能会出现问题。那是你需要修复的。
答案 1 :(得分:0)
我之前遇到过同样的问题......过渡定义为:
var transition = d3.select({}).transition()
.duration(1000)
.ease("linear");
您需要运行一个将转换更改为零的函数:
transition = transition.transition(0).duration(0);
这实质上阻止了完全运行的过渡。
然后重新开始转换:
transition = d3.select({}).transition()
.duration(shiftDuration)
.ease("linear");
tick();