Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから私はこのような翡翠のスニペットを持っています
.statusbox h5 {{status}}
これはと同等です
<h5 class = "statusbox"> {{status}} </h5>
2 つの質問:
本当にありがとう!
レオン
CSS3 アニメーションを使用していると仮定すると、ng-class は問題なく動作します。
<h5 class="statusbox" ng-class="{ 'animate-class' : foo }">{{status}}</h5>
その後、設定するたび$scope.foo = trueに、クラスが に追加さanimate-classれますh5。CSS3 アニメーションが適切に設定されていれば、アニメーションが表示されるはずです。
$scope.foo = true
animate-class
h5