vue 用ref选择器获取 标签中style的transform属性中的x 和 y
时间: 2024-05-04 13:15:41 浏览: 103
vue中的ref使用
5星 · 资源好评率100%
非常感谢您的问题。对于您的问题,我可以回答。您可以通过以下代码来获取标签中style的transform属性中的x和y:
```javascript
const el = this.$refs.yourElement;
const transform = getComputedStyle(el).transform;
const matrix = transform.match(/^matrix\((.+)\)$/)[1].split(', ');
const x = matrix[4];
const y = matrix[5];
```
希望这个答案能够帮到您。如果您有其他问题,欢迎随时提出。
阅读全文