通过使用Angular Typescript,是否可以获取元素的transform:translate3d()值?

huangapple go评论81阅读模式
英文:

Is it possible to get the transform:translate3d() values of an element ? By using Angular Typescript?

问题

所以我需要以下数值:Values

我想要获取它们并将它们保存在一个变量中,作为示例。你对我有什么建议吗?
我想要获取它们以保存元素的最后位置。 通过使用Angular Typescript,是否可以获取元素的transform:translate3d()值?

英文:

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. 通过使用Angular Typescript,是否可以获取元素的transform:translate3d()值?

答案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.

huangapple
  • 本文由 发表于 2020年8月31日 22:48:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/63673064.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定