javascript - 查找 svg 路径元素的中心

标签 javascript svg

您好,我对 svg 和 JavaScript 相当陌生,我试图在鼠标悬停在 svg 上时弹出一些 svg 元素(通过缩放),反之亦然,当鼠标离开 svg 元素时。

我已经能够通过使用变换来增加 svg 元素的大小,但是有没有办法让它们从中心缩放?

这是我的 svg(我使用此网站 svg-edit 创建它):

 // event-driven mouse-interaction with SVG objects
        
        function unselected_colour(evt) {
            // get the element that triggered the browser event
            let target = evt.target;
            // modify the element
            target.setAttribute('transform', 'scale(1)')
        }
        function selected_colour(evt) {
            // get the element that triggered the browser event
            let target = evt.target;
            // modify the element
            target.setAttribute('transform', 'scale(1.25)')
        }


        // find the SVG rectangle in the DOM
        let mileEndRoad_obj = document.getElementById('mile_end_road');
        let bandcroftRoad_obj = document.getElementById('bandcroft_road');

        let godwardSquare_obj = document.getElementById('godward_sqaure');

        let compSci_obj = document.getElementById('computer_science');
        let itl_obj = document.getElementById('itl');
        let engineering_obj = document.getElementById('engineering');
        let peoplePalace_obj = document.getElementById('people_palace');
        
        // pass the above functions as callbacks, to be triggered by mouse events
        godwardSquare_obj.addEventListener('mouseover', selected_colour, false);
        godwardSquare_obj.addEventListener('mouseout', unselected_colour, false);

        compSci_obj.addEventListener('mouseover', selected_colour, false);
        compSci_obj.addEventListener('mouseout', unselected_colour, false);

        itl_obj.addEventListener('mouseover', selected_colour, false);
        itl_obj.addEventListener('mouseout', unselected_colour, false);
        
        engineering_obj.addEventListener('mouseover', selected_colour, false);
        engineering_obj.addEventListener('mouseout', unselected_colour, false);

        peoplePalace_obj.addEventListener('mouseover', selected_colour, false);
        peoplePalace_obj.addEventListener('mouseout', unselected_colour, false);
  <svg width="1640" height="480" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
        <!-- Created with SVG-edit - https://github.com/SVG-Edit/svgedit-->
        <g class="layer">
         <title>map</title>
         <path d="m38,86.66667l0,94l64.66666,0l0.00001,-28l8.66666,0l0,27.33333l35.33334,0l-11.33334,-20l-12.66666,0l-0.00001,-8c8,0 12.66667,0 12.66667,0c0,0 -0.66667,-65.33333 0,-65.33333c0.66667,0 -89.33333,0 -97.33333,0z" 
         fill="rgb(94,43,126)" id="computer_science" stroke="#000000" stroke-width="5"/>

         <rect fill="#10a3a3" height="447.44527" id="bandcroft_road" stroke="#10a3a3" stroke-width="5" width="35.76642" x="308.90512" y="-24.52553"/>
         <rect fill="#10a3a3" height="54.74453" id="mile_end_road" stroke="#10a3a3" stroke-width="5" width="647.44528" x="-1.31387" y="425.10952"/>

         <path d="m239.41174,257.50001l-133.52938,-0.14706l-0.00001,-69.85294l50.7353,-0.00001l-16.17647,-31.61765l58.82353,0l0,30.14706l39.70588,0l0.44115,71.4706z" 
         fill="#1bd1a6" id="godward_sqaure" stroke="#1bd1a6" stroke-width="5"/>

         <rect fill="rgb(94,43,126)" height="100.5" id="itl" stroke="#000000" stroke-width="5" width="65" x="37" y="192"/>

         <path d="m174.99947,274.5c-0.33149,41.16667 0.33149,82.83333 0,124l290.39161,0l0,-11.5l69.138332,0l0,-37l-68.641082,0l0,-142.5l-101.93541,0l0,167.5l-73.09515,0l0,-101l-115.8583,0.5z" 
         fill="rgb(94,43,126)" id="engineering" stroke="#000000" stroke-width="5"/>

         <path d="m534.99996,206.029419l70.147082,-0.147072c0,0 0.441155,35.441191 -0.294139,34.705896c-0.735294,-0.735294 33.088235,0.000001 32.64708,-0.147072c-0.441155,-0.147073 0.441156,39.852955 0,39.705882c-0.441155,-0.147073 -18.676491,0.147074 -19.117647,0c-0.441156,-0.147073 0.441155,116.323546 0,116.176471c-0.441155,-0.147076 -82.647081,0.882369 -83.088235,0.735294c-0.441154,-0.147076 -0.294141,-191.764693 -0.294141,-191.029399z" 
         fill="rgb(94,43,126)" id="people_palace" stroke="#000000" stroke-width="5"/>
        </g>
    </svg>

如果有任何进一步的解释,请告诉我。 任何帮助将不胜感激,非常感谢。

最佳答案

关于javascript - 查找 svg 路径元素的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66281402/

相关文章:

javascript - 放置在 ng-repeat 上的 Angular Directive(指令)未从 ng-repeat 中删除

d3.js - SVG - 将所有形状/基元转换为 <path>

html - 在包含的 HTML 中使用 CSS 设置 SVG 样式

css - 使用 CSS 动画关闭 SVG 框的盖子

javascript - 过滤两个对象数组

javascript - 在 iFrame 中安全地执行 HTML5/Javascript

javascript - 液晶电视自动分页显示日程信息

svg - 将文本放入框中

html - 在没有异物的情况下模拟 SVG 中可编辑的内容

javascript - 从 anchor 标记触发时,Bootstrap 3 Modal 不会弹出