gpt4 book ai didi

jQuery : Mousewheel event for svg

转载 作者:行者123 更新时间:2023-12-01 01:22:24 25 4
gpt4 key购买 nike

我正在尝试为 svg 实现鼠标滚轮事件。我正在使用下面的代码。如果我使用 $(document).bind() ,这可以正常工作,但如果我使用 svg id svgmain ,它就不起作用。我希望鼠标滚轮只能在 svg 内工作。如何获得?

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js" > </script>
<script>
$("#svgmain").bind("mousewheel", function(event) {
$("#log").text("pageX: " + event.pageX + ", pageY: " + event.pageY );
});
</script>
</head>
<body>
<div id="log"></div>
<svg id="svgmain" xmlns="http://www.w3.org/2000/svg" version="1.1" style="background-color:blue;">
<g id="g">
<circle id="circle" cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</g>
</svg>
</body>
</html>

最佳答案

使用以下函数将事件绑定(bind)到 svg 元素。

 $(document).on('mousewheel', "#svgmain", function() {
// your code here
});

下面的工作代码。

<html>

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js">
</script>
<script>
$(document).on('mousewheel', "#svgmain", function() {
$("#log").text("pageX: " + event.pageX + ", pageY: " + event.pageY);
});
</script>
</head>

<body>
<div id="log"></div>
<svg id="svgmain" xmlns="http://www.w3.org/2000/svg" version="1.1" style="background-color:blue;">
<g id="g">
<circle id="circle" cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" />
</g>
</svg>
</body>

</html>

关于jQuery : Mousewheel event for svg,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35571197/

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