双击应用程序屏幕可将transform3d样式添加到svg图标

时间:2019-05-17 10:04:06

标签: angular svg ionic4

我正在开发Ionic 4应用程序,并且其中包含svg图标。每当我在应用程序屏幕上双击时,它都会添加一种样式,以将SVG转换和缩放为3倍。

这是不想要的效果,我没有在项目库中为此动画添加样式。

请让我知道为什么会这样,如何避免将这些样式添加到应用程序内的SVG图标中?

Style Attribute {
transition-duration: 300ms;
transform: translate3d(0px, 0px, 0px) scale(3);
}



 <img class="changeGraphics" src="assets/imgs/icon_indicator-up-green.svg" style="transition-duration: 300ms; transform: translate3d(0px, 0px, 0px) scale(3);">

https://i.stack.imgur.com/Z152p.png

0 个答案:

没有答案