web-dev-qa-db-ja.com

ng-animateをangular 1.2で使用するには?

ベース

角度1.1.5- http://plnkr.co/edit/eoKt8o4MJw9sWdYdeG3s?p=preview -WORKS

アップ

角度1.2.6- http://plnkr.co/edit/WopgAtFNVm1mKf5Li99h?p=preview -失敗


私はドキュメントの指示に従ったと思う- http://docs.angularjs.org/api/ngAnimate

•最初に、angular-animate.jsをHTMLに含めます

•次に、モジュールを依存モジュールとして追加して、アプリケーションにロードします

私のタイムゾーンではかなり遅れており、おそらく明らかなものを見逃しています。私の推測では-1.1.5と1.2.6の間のCSSファイルは互換性がありませんか?本当に言えない...

とにかくここにコード形式uppedplunkerがあり、ドキュメントからの指示に従ったことを強調するためにコメントを含めました:

<!doctype html>
<html ng-app="app">
<head>
  <meta charset="utf-8">
  <title>Top Animation</title>
  <script>document.write('<base href="' + document.location + '" />');</script>
  <link rel="stylesheet" href="style.css">
  <link href="//netdna.bootstrapcdn.com/Twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
  <script src="http://code.angularjs.org/1.2.6/angular.js"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular-animate.js"></script>
  <!-- ^^^ load animate -->
</head>

<script>
var app = angular.module('app', ['ngAnimate']); // <-- dependent module

app.controller('Ctrl', function($scope) {
  $scope.names = ['Igor Minar', 'Brad Green', 'Dave Geddes', 'Naomi Black', 'Greg Weber', 'Dean Sofer', 'Wes Alvaro', 'John Scott', 'Daniel Nadasi'];
});

</script>

<body ng-controller="Ctrl">
  <div class="well" style="margin-top: 30px; width: 200px; overflow: hidden;">
    <form class="form-search"> 
        <div class="input-append">
          <input type="text" ng-model="search" class="search-query" style="width: 80px">
          <button type="submit" class="btn">Search</button>
        </div>
        <ul class="nav nav-pills nav-stacked">
          <li ng-animate="'animate'" ng-repeat="name in names | filter:search">
            <a href="#"> {{name}} </a>
          </li> 
      </ul>
    </form>
  </div>
</body>
</html>

助けてくれてありがとう!

20
Mars Robertson

これがあなたのプランカーの作業バージョンです... http://plnkr.co/edit/05irGvYwD4y9ZRb1ZHSw?p=preview

Angular 1.2+では、ng-animateディレクティブを宣言する必要はありません。アニメーションはcssのみで追加できます。したがって、例では、ng-animateディレクティブを削除して、要素にcssクラスを与えるので、変更します...

<li ng-animate="'animate'" ng-repeat="name in names | filter:search">

to...

<li class="animate" ng-repeat="name in names | filter:search">

そして、CSSを...に更新します.

.animate.ng-enter, 
.animate.ng-leave
{ 
...

.animate.ng-leave.animate.ng-leave-active,
.animate.ng-enter {
...

.animate.ng-enter.ng-enter-active, 
.animate.ng-leave {
...

Angularは、ng-enter、ng-hide、ng-leaveなどのクラスを要素に追加し、アニメーションライフサイクル中にそれらを適切に削除します。これにより、CSSアニメーションがトリガーされます。 'Usage'の下の docs には、どのディレクティブがどのアニメーションクラスをサポートするかのリストがあります。この例では、ng-repeatをアニメートしているため、ng-enter、ng-leave、ng-moveクラスが適切なタイミングで要素に追加され、cssでアニメーションをアタッチできます。

36
Charlie Martin

素晴らしい仕事をするこのデモを見つけました: http://jsbin.com/usaruce/3/edit

次の構文を使用します。

.todo-item {
  -webkit-transition: color 0.6s, background-color 0.3s;
  -moz-transition: color 0.6s, background-color 0.3s;
  -ms-transition: color 0.6s, background-color 0.3s;
  transition: color 0.6s, background-color 0.3s;
}
.todo-item.ng-enter {
  -webkit-animation: fadeInLeft 1s;
  -moz-animation: fadeInLeft 1s;
  -ms-animation: fadeInLeft 1s;
  animation: fadeInLeft 1s;
}
.todo-item.ng-leave {
  -webkit-animation: bounceOut 1s;
  -moz-animation: bounceOut 1s;
  -ms-animation: bounceOut 1s;
  animation: bounceOut 1s;
}

animate.css(fadeInLeft、bounceOut)も利用します

2
Mars Robertson