angular.js - AngularJS link函数里调用CSS transition transform 是瞬发的,
迷茫
迷茫 2017-04-17 11:17:34
0
1
606
        link: function(scope, element, attrs) {
            element.parent().find('.right').css({
                'transition': "all 0.6s linear  0s",
                'transform':"rotate(180deg)" 

        });
        }

       页面显示直接就转了180度,没有0.6秒的效果。
迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(1)
刘奇

Would you try writing it like this?

element.parent().find('.right').css({'transition': "all 0.6s linear  0s"});
setTimeout(function(){
    element.parent().find('.right').css({'transform': "rotate(180deg)"});
});
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template