我正在尝试开发一个交互式SVG地图,当鼠标进入SVG图像中的矩形时,我想做一些事情。当前,当我的鼠标输入SVG图像时,代码将记录到控制台,而不是鼠标鼠标在矩形上时。任何帮助将非常感激。谢谢!
<object onload="svgOnLoad()" id="activeSVG" data="SVGNAME.svg" type="image/svg+xml">
</object>
<script>
function svgOnLoad() {
console.log("SVG Loaded");
$("#activeSVG").mouseenter(function(e) {
console.log("In the SVG")
});
//Executed when the mouse enters an SVG rect element
$("rect").mouseenter(function(e) {
console.log("Mouse Entered rectangles!!")
});
}
</script>
有一个简短的描述,例如,在https://www.tutorialspoint.com/svg/svg_interactivity.htm。
对于mouseover
事件,您需要jQuery
mouseover
功能:https://api.jquery.com/mouseover/
在弄乱它之后,我发现了需要添加的内容。您需要获取SVG对象的内容,然后从那里播放它。我在下面包含了新的脚本代码。
<script>
function svgOnLoad() {
// Get SVG object
var officeMapFloor = document.getElementById("activeSVG");
// Get the content of the SVG object
var svgDoc = officeMapFloor.contentDocument;
// Access an ID within the content of the object
var rect = svgDoc.getElementById("siesta");
// Apply the event listener
rect.onmouseover = function(){
console.log("Finally in the rectangle");
};
}
</script>