- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 svg 上动态绘制文本框,但出现错误,因为 getScreenCTM 不是函数,所以解决方案是什么
var mousedownonelement = false;
window.getlocalmousecoord = function (svg, evt) {
editor.x = evt.clientX;
editor.y = evt.clientY;
var localpoint = editor.matrixTransform(svg.getScreenCTM().inverse());
localpoint.x = Math.round(localpoint.x);
localpoint.y = Math.round(localpoint.y);
return localpoint;
};
window.createtext = function (localpoint, svg) {
var myforeign = document.createElementNS('http://www.w3.org/2000/svg', 'foreignObject')
var textdiv = document.createElement("div");
var textnode = document.createTextNode("type the text.....");
textdiv.appendChild(textnode);
textdiv.setAttribute("contentEditable", "true");
textdiv.setAttribute("width", "auto");
myforeign.setAttribute("width", "100%");
myforeign.setAttribute("height", "100%");
myforeign.classList.add("foreign");
textdiv.classList.add("insideforeign");
textdiv.addEventListener("mousedown", elementMousedown, false);
myforeign.setAttributeNS(null, "transform", "translate(" + localpoint.x + " " + localpoint.y + ")");
svg.appendChild(myforeign);
myforeign.appendChild(textdiv);
};
function elementMousedown(evt) {
alert("elementMousedown");
mousedownonelement = true;
}
因为它是鼠标事件,所以它只适用于桌面,所以 ipad 触摸事件的解决方案可以使这个逻辑起作用
$('#calloutbox').click(function (evt) {
var svg = document.getElementById('canvas');
alert(svg);
var localpoint = getlocalmousecoord(svg, evt);
if (!mousedownonelement) {
createtext(localpoint, svg);
} else {
mousedownonelement = false;
}
});
最佳答案
与 D3 v5 有同样的问题
改变了来自
.on("mouseover",function(d) { tip.show(d)})
给
.on("mouseover",function(d) { tip.show(d, this)})
d3Tip
自动解析 i
的值,无需显式传递。有关详细信息,请参阅此 thread
关于svg.getScreenCTM 不是函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33122961/
我需要在 svg 上动态绘制文本框,但出现错误,因为 getScreenCTM 不是函数,所以解决方案是什么 var mousedownonelement = false; window.getloc
我需要在 svg 上动态绘制文本框,但出现错误,因为 getScreenCTM 不是函数,所以解决方案是什么 var mousedownonelement = false; window.getloc
jsFiddle demo 我尝试使用 getScreenCTM 函数根据 SVG 图像坐标检索鼠标的位置。在 IE 和 Firefox 中它可以工作,但在 Chrome 中不能。 如果我在 SVG
我有一个带有 svg 的网页,其中有另一个 svg 元素。问题是我需要通过 getScreenCTM() 方法(对于嵌套 svg)获取矩阵信息,而 firefox 返回的结果与其他浏览器(IE、Chr
我在观察鼠标事件的 SVG 中有一些 javascript,需要将鼠标坐标转换为 SVG 空间中的实际坐标(使用 viewBox 和其他转换)。 此代码适用于 WebKit/Gecko 浏览器: fu
我是一名优秀的程序员,十分优秀!