英文:
Is it possible to get the transform:translate3d() values of an element ? By using Angular Typescript?
问题
所以我需要以下数值:Values
我想要获取它们并将它们保存在一个变量中,作为示例。你对我有什么建议吗?
我想要获取它们以保存元素的最后位置。
英文:
So i need the following values: Values
I want to get them and save them in a variable for example. Do you have any suggestions for me ?
I want to get them to save the last position of an element.
答案1
得分: 1
如果您可以访问您的元素,您可以使用对它的引用,例如使用ViewChild(https://angular.io/api/core/ViewChild),然后您可以使用:
myElementRef.style.transform
这将只会给您一个包含属性transform值的字符串。如果您想要访问这些值,您将需要解析这个字符串。
英文:
if you have access to your element you can use a reference to it with a ViewChild for example https://angular.io/api/core/ViewChild and then you can use
myElementRef.style.transform
This will only give you a string containing the value of the property transform. If you want to access the values you would have to parse the string.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论