4

我正在使用 animate.css 在同一元素上制作动画。添加课程后,我在删除课程时遇到问题。

HTML

 <form ng-submit="animate()" ng-controller="AnimateCtrl">
    <input type='text' ng-model="some">
 </form>
 <div ng-class="{shake:animation.shake}" class="animated">

myapp.controller(function($scope){
     var animation = $scope.animation = {
           shake:false
     };

     $scope.animate=function(){

         //remove the class first and add it back again

          animation.shake = false

          animation.shake = true


     };

})

动画后如何删除类?

4

1 回答 1

11

将 animation.shake 的值更改为 false 会删除该类。将其更改为 true 会添加类。这是 ng-class 工作方式的基础。如果您希望动画运行一段时间,则需要使用 $timeout 进行切换。很难通过您的代码来判断。以下示例使用在 2000 毫秒后执行的 $timeout 删除类。

例如 http://plnkr.co/edit/Wtxkrv2nIqSLNfEsvCyI?p=preview

CSS .red{ 颜色:红色;}

HTML 和代码

<!DOCTYPE html>
<html>

<head>
<script data-require="angular.js@*" data-semver="1.2.16" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.min.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>

<body ng-controller="test">
<h1>Hello Plunker!</h1>
<span ng-class="{'red':animation.shake}">Hello World</span>
<button ng-click="shake()">red</button>
<script>

  var app=angular.module("app",[]);
  app.controller("test",function($scope,$timeout){
    $scope.animation={shake:false};
    $scope.shake=function(){
      $scope.animation.shake=true;
      $timeout(function(){
        $scope.animation.shake=false;
      },2000,true);
    }
  });
  angular.bootstrap(document,["app"]);
</script>

于 2014-04-17T00:18:00.160 回答