AngularJS animate image on src change

前端 未结 8 2097
一整个雨季
一整个雨季 2020-12-30 09:26

I have an AnuglarJS app, where I load/change some images from a webservice...

Controller

.controller(\'PlayerCtrl\', function($scope, programService         


        
8条回答
  •  时光说笑
    2020-12-30 10:27

    Based on pkdkk's answer and the Angular.js 1.3.6 sources, my solution is as such (the CSS animation part is as used for standard ngShow):

    // Copied from the Angular's sources.
    var NG_HIDE_CLASS = 'ng-hide';
    var NG_HIDE_IN_PROGRESS_CLASS = 'ng-hide-animate';
    
    app.directive('myFadeIn', function($animate, $timeout) {
        return {
            restrict: 'A',
            link: function(scope, element, attrs){
                element.addClass("ng-hide");
                element.on('load', function() {
                    $timeout(function () {
                        $animate.removeClass(element, NG_HIDE_CLASS, {
                            tempClasses: NG_HIDE_IN_PROGRESS_CLASS
                        });
                    });
                });
            }
        }
    });
    

提交回复
热议问题