gpt4 book ai didi

javascript - d3.js 重写 version4 中的缩放示例

转载 作者:可可西里 更新时间:2023-11-01 01:50:45 25 4
gpt4 key购买 nike

Drag and Drop Example

我正在尝试重写上面这个例子的一部分以在我的代码中使用,特别是这一段:

function centerNode(source) {
scale = zoomListener.scale();
x = -source.y0;
y = -source.x0;
x = x * scale + viewerWidth / 2;
y = y * scale + viewerHeight / 2;
d3.select('g').transition()
.duration(duration)
.attr("transform", "translate(" + x + "," + y + ")scale(" + scale + ")");
zoomListener.scale(scale);
zoomListener.translate([x, y]);
}

但是我被卡住了,因为 v4 包已经改变了很多。我把我的 zoomListener 函数写成了

    var zoomListener = d3.zoom()
.scaleExtent([0.3,2])
.on("zoom", zoomed);

function zoomed() {
transform = d3.event.transform;
console.log(d3.event);
svg.attr("transform", transform);
}

function centerNode(source){
t = transform;
console.log(t);
x = t.x*t.k; //I only want things to be centered vertically
y = (t.y + -source.x0)*t.k + (viewerHeight)/2 ;
svg.transition()
.duration(duration)
.attr("transform","translate(" + x + "," + y +")scale(" + t.k + ")");

transform.scale(t.k); //DOES NOT WORK
transform.translate([x, y]); //DOES NOT WORK

}

而且我知道根据文档,事情已经发生变化,信息不再存储在我的 zoomListener 上 D3 V4 release note on zoom我想我只是对我应该如何使用新版本做到这一点感到困惑。我的 centerNode 函数的最后几行不起作用,因为当我将节点居中时缩放和平移重置...

有什么建议吗?

最佳答案

因此,经过大量挖掘和反复试验后,我得出了一个非常适合我的目的的答案。请注意,下面的这段代码只是我代码的相关部分而不是整个代码,某些变量是不言自明的,因此没有包括它们。 这也是 d3.js 的第 4 版。

var zoom = d3.zoom()
.scaleExtent([0.3,2])
.on("zoom", zoomed);


var svg = d3.select("body")
.append("svg")
.attr("width", viewerWidth)
.attr("height", viewerHeight);

var zoomer = svg.append("rect")
.attr("width", viewerWidth)
.attr("height", viewerHeight)
.style("fill", "none")
.style("pointer-events", "all")
.call(zoom);

var g = svg.append("g");

zoomer.call(zoom.transform, d3.zoomIdentity.translate(150,0)); //This is to pad my svg by a 150px on the left hand side

function zoomed() {
g.attr("transform", d3.event.transform);//The zoom and panning is affecting my G element which is a child of SVG
}

function centerNode(source){

t = d3.zoomTransform(zoomer.node());
console.log(t);

x = t.x;
y = source.x0;

y = -y *t.k + viewerHeight / 2;

g.transition()
.duration(duration)
.attr("transform", "translate(" + x + "," + y + ")scale(" + t.k + ")")
.on("end", function(){ zoomer.call(zoom.transform, d3.zoomIdentity.translate(x,y).scale(t.k))});


}

根据 d3.js 页面上 v4 的示例,我使用矩形将缩放应用于

The zoom behavior is applied to an invisible rect overlaying the SVG element; this ensures that it receives input, and that the pointer coordinates are not affected by the zoom behavior’s transform. Pan & Zoom Example

在中心节点函数中,我使用 d3.zoomTransform(zoomer.node()); 获取应用于页面的当前变换。此函数的目的只是将可折叠树垂直居中,而不是水平居中,因此我保持当前的 transform.x(此处为 t.x)不变。我的 svg 中的坐标是翻转的,因此为什么 y= source.x0, source 是我的可折叠树中单击的节点。 (“查看此线程顶部引用的示例以了解我正在尝试转换为版本 4 的内容)

我将转换应用于我的 G 元素,然后我想将这些更改提交给缩放转换,为此我使用 .on("end", function(){}) 否则它在转换时会做出奇怪的行为,因为它所做的只是设置转换的当前状态。

zoomer.call(zoom.transform, d3.zoomIdentity.translate(x,y).scale(t.k))

上面的这一行应用了 x 和 y 的转换以及一个比例——等于当前状态——到恒等矩阵必须为 G 获得一个新的变换,然后我将它应用到 zoomer 这是我之前称为 zoom 的元素。

这对我来说就像一个魅力!

关于javascript - d3.js 重写 version4 中的缩放示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38534500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com