ngAnimateモジュールを使用したアニメーション(jQueryでアニメーションを設定)
2013年12月5日 / category : angularjs, lab, nganimateモジュール
ngAnimateモジュール+jQueryでアニメーションを実装するサンプルを記事にまとめます。
英語の記事を色々眺めて、自分なりに理解したものですので、あやふや感満載です。
手順としては、下記のような感じになるかと。
1.jQueryを読み込む
2.ngAnimateモジュールファイル「angular-animate.min.js」を読み込む
3.AngularJSのanimation関数を使用して、アニメーションを設定する
4.HTML側でアニメーション分岐を設定する
【1.jQueryを読み込む】
<script src="js/libs/jquery-2.0.3.min.js"></script> <script src="js/libs/jquery.easing.1.3.js"></script>
jQueryを読み込みます。
また、今回はjQueryのライブラリ「jquery.easing」を使用することにするので、ライブラリファイルも一緒に読み込みます。
【2.ngAnimateモジュールファイル「angular-animate.min.js」を読み込む】
AngularJS公式サイトからダウンロードしたファイル一式の中に、「angular-animate.min.js」が格納されていますので、
まずjsファイルを読み込みます。
<script src="js/libs/angular-animate.min.js"></script>
このモジュールを読み込むには、
var myApp = angular.module('app', ['ngAnimate']);
と指定します。(モジュール名がngAnimateです。)
【3.AngularJSのanimation関数を使用して、アニメーションを設定する】
animation関数の使用方法が正直あやふやな感じですが、下記のような使い方だと思っています。
myApp.animation('アニメーション対象となるクラス名', function(){ return { //アニメーション設定処理 } });
「アニメーション設定処理」には、どういうタイミングでアニメーションを実行させるか、という設定を記述するのですが、その分岐の種類は下記の公式サイトを参考にしていただければと思います。
→ $animate
この中で、今回のサンプルでは、addClassメソッド、removeClassメソッドを使用します。
addClass → クラスが追加されたタイミングでアニメーションを実行する
removeClass → クラスが削除されたタイミングでアニメーションを実行する
animation関数の記述は下記のようになります。
myApp.animation('アニメーション対象となるクラス名', function(){ return { //クラスが追加されたタイミング addClass: function(element, className, done){ //アニメーション実行処理 }, //クラスが削除されたタイミング removeClass: function(element, className, done){ //アニメーション実行処理 } } });
addClassメソッド、removeClassメソッドの引数はそれぞれ
element → アニメーションの対象となるjQueryのelement要素
className → アニメーションの対象となるクラス名
done → アニメーション終了後のコールバック関数(これの使い方がわかっていません、、、)
となります。
次に「アニメーション実行処理」に今回は、jQueryのライブラリ「jquery.easing」を使用したアニメーションを記述していきます。
myApp.animation('アニメーション対象となるクラス名', function(){ return { addClass: function(element, className, done){ $(element).animate({'width':640, 'height':480, 'opacity':1}, 1000, 'easeInOutQuint'); }, removeClass: function(element, className, done){ $(element).animate({'width':0, 'height':0, 'opacity':0}, 1000, 'easeOutQuint'); } } });
jQueryの記述の説明は割愛します。
これで、クラスが追加されたタイミング(addClass)、クラスが削除されたタイミング(removeClass)でアニメーションがそれぞれ実行されるようになります。
【4.HTML側でアニメーション分岐を設定する】
アニメーションを設定する要素に下記の属性を指定します。
<div ng-class="animateCss"></div>
ng-class属性の値(animateCss)は任意です。
次に、先ほど設定したanimation関数のアニメーションを操作ボタンをクリックすることで実行されるようにします。
<button ng-click="animateCss='animate'">Open Animation</button> <button ng-click="animateCss=''">Close Animation</button>
ボタン「Open Animation」をクリックした場合
ng-class属性の値「animateCss」に、「animate」のクラス名が代入され、アニメーションが開始されます。
→ クラス名「animate」が追加される
→ animation関数で設定したaddClassメソッド内のアニメーションが実行される
ボタン「Close Animation」をクリックした場合
ng-class属性の値「animateCss」のクラスが削除され、アニメーションが開始されます。
→ クラス名「animate」が削除される
→ animation関数で設定したremoveClassメソッド内のアニメーションが実行される
これですべての準備が完了しました。
サンプルを確認しましょう。
- ■サンプルファイル一式
- ダウンロード – zip
- ■HTML – index.html
-
<!doctype html> <html ng-app="app"> <head> <meta charset="utf-8"> <title></title> <script src="js/libs/jquery-2.0.3.min.js"></script> <script src="js/libs/jquery.easing.1.3.js"></script> <script src="js/libs/angular.min.js"></script> <script src="js/libs/angular-animate.min.js"></script> <script src="js/app.js"></script> <link href="css/reset.css" rel="stylesheet"> <link href="css/styles.css" rel="stylesheet"> </head> <body> <div id="container"> <div id="btns"> <button ng-click="animateCss='animate'">Open Animation</button> <button ng-click="animateCss=''">Close Animation</button> </div> <div id="contents"> <div id="rect" ng-class="animateCss"></div> </div> </div> </body> </html>
- ■CSS – styles.css
-
#rect{ width:0; height:0; background:#cc285f; }
- ■JavaScript – app.js
-
var myApp = angular.module('app', ['ngAnimate']); myApp.animation('.animate', function(){ return { addClass: function(element, className, done){ $(element).animate({'width':640, 'height':480, 'opacity':1}, 1000, 'easeInOutQuint', function(){ addCompleted(className); }); }, removeClass: function(element, className, done){ $(element).animate({'width':0, 'height':0, 'opacity':0}, 1000, 'easeOutQuint', function(){ removeCompleted(className); }); } } }); function addCompleted(_className){ alert('add completed ! : ' + _className); }; function removeCompleted(_className){ alert('remove completed ! : ' + _className); };
カテゴリ : angularjs アーカイブ
- 【レスポンシブコーディング】縦方向のマージンをパーセント指定
- $windowの使い方
- $timeoutの使い方
- filterのカプセル化
- filterメソッド(カスタムfilter)の作り方
- filter機能(基本)
- directiveメソッド、require属性について(基本)
- directiveメソッド、priority属性、terminal属性について(基本)
- directiveメソッド、replace属性について(基本)
- directiveメソッド、transclude属性について(基本)
- directiveメソッド、scope属性について(基本)
- directiveメソッド、controller属性について(基本)
- directiveメソッド、link関数とcompile関数の違い(基本)
- directiveメソッド、template属性とtemplateUrl属性
- directiveメソッド、restrict属性の使い方
- directiveメソッドとは(Hello world)
- ngAnimateモジュールを使用したアニメーション(TweenMaxでアニメーションを設定)
- ngAnimateモジュールを使用したアニメーション(jQueryでアニメーションを設定)
- ngAnimateモジュールを使用したアニメーション(ng-class指定)
- ngAnimateモジュールを使用したアニメーション – 外部HTMLの切り替え(ng-view)
- ngAnimateモジュールを使用したアニメーション(基本)
- $routeParamsを使用して、URLのパラメータを取得する
- 外部HTMLの読み込み、controller指定とcontrollerAs指定の違い
- HTMLを細分化して読み込む
- モジュールを細分化して読み込む
- コンストラクタ関数の記述方法
- AngularJSの書き方(Hello world)