- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想通过坐标从 SVG 文件中获取对象 ID。
例如在
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1"
height="50" width="50">
<rect id="rectRED"
x="15" y="5" height="30" width="30"
style="fill:#ff0000;fill-opacity:0.5;stroke:#000000;stroke-width:1.5" />
<rect id="rectBLUE"
x="5" y="15" height="30" width="30"
style="fill:#0000ff;fill-opacity:0.5;stroke:#000000;stroke-width:1.5" />
</svg>
getObjectsAt(10,25)
应该返回一个包含 rectBLUE
的列表getObjectsAt(25,25)
应该返回一个包含 rectRED
的列表和 rectBLUE
getObjectsAt(10,10)
应该返回类似 NIL
的内容最佳答案
有 document.elementFromPoint
方法,但它只返回最顶层的元素。要获取一个点下的所有元素,您可以找到最上面的元素,隐藏它并再次查看该点,直到没有更多元素存在:
var elementsAt = function( x, y ){
var elements = [], current = document.elementFromPoint( x, y );
// at least one element was found and it's inside a ViewportElement
// otherwise it would traverse up to the <html> root of jsfiddle webiste.
while( current && current.nearestViewportElement ){
elements.push( current );
// hide the element and look again
current.style.display = "none";
current = document.elementFromPoint( x, y );
}
// restore the display
elements.forEach( function( elm ){
elm.style.display = '';
});
return elements;
}
关于svg - 在给定坐标处获取 SVG-Object_s?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30755696/
我想通过坐标从 SVG 文件中获取对象 ID。 例如在 getObjectsAt(10,25)应该返回一个包含 rectBLUE 的列表 getObjectsAt(25,25)应
我正在使用一个 numpy object_ 数组来存储可变长度的字符串,例如 a = np.array(['hello','world','!'],dtype=np.object_) 有没有一种简单的
如何将 numpy ndarray 转换为火炬张量? 这是我的数据: array([array([-0.4287 , -1.193 , -2.156 , -0.2264 , -1.978
我正在开发一个使用 Thymeleaf 作为模板的 Spring Boot 项目。 在我的实体中,我有 2 个扩展抽象类的子类。 在我的 Html 文件中,当我尝试显示子类的名称时。 Thymelea
Str.replace 方法返回一个属性错误。 dc_listings['price'].str.replace(',', '') AttributeError: Can only use .str
我正在操作一个 JSON 文件,我从中运行此代码以获取以下数据帧: import pandas as pd topics = df.set_index('username').popular_boar
我是一名优秀的程序员,十分优秀!