gpt4 book ai didi

javascript - NG-重复动画在 IE11 中不起作用

转载 作者:行者123 更新时间:2023-11-28 18:21:26 25 4
gpt4 key购买 nike

我有这个 ng-repeat 代码,但在 IE 11 中不起作用

<div class="cardSegmentation moveUp" 
style="animation: moveUpA {{ (0.5 + 0.1 * $index) + 's' }} ease forwards;animation-delay: 400ms;-webkit-animation: moveUpA {{ (0.5 + 0.1 * $index) + 's' }} ease forwards;-webkit-animation-delay: 400ms;"
ng-repeat="typesCard in quizzesTypes"
ng-click="sendTypeSegm(typesCard.id)">

在元素检查器中,该元素中没有显示任何内容:

{{ (0.5 + 0.1 * $index) + 's' }}

请帮忙..

谢谢

最佳答案

我无法将其识别为有效的 HTML,并且未对其执行任何操作。

您可以使用 ng-attrs-styleng-style 指令,如下所示。

<div class="cardSegmentation moveUp" 
ng-style="{
animation: 'moveUpA '+(0.5 + 0.1 * $index) + 's ease forwards',
animation: 'moveUpA '+ (0.5 + 0.1 * $index) + 's ease forwards',
-webkit-animation: 'moveUpA '+ (0.5 + 0.1 * $index) + 's ease forwards'
}"
style=" animation-delay: 400ms; ; -webkit-animation-delay: 400ms;"
ng-repeat="typesCard in quizzesTypes"
ng-click="sendTypeSegm(typesCard.id)">

关于javascript - NG-重复动画在 IE11 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39796201/

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