gpt4 book ai didi

css - 如何在CSS中获取dx dy svg属性

转载 作者:行者123 更新时间:2023-11-27 23:39:40 26 4
gpt4 key购买 nike

任何人都可以向我推荐一种在 css 中获取 dx dy svg 属性的最佳实践方法。如果这不可能,我该如何在 JS 中完成。

最佳答案

通过js,我建议dom节点getAttribute方法:

var text = document.querySelector('text')

var dx = text.getAttribute('dx')

console.log('dx is', dx)
<svg> 
<text dx="20%" x="10%" y="50%">SVG</text>
</svg>

关于css - 如何在CSS中获取dx dy svg属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57085452/

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