如何向 angularjs uib-alert 指令添加动画 [英] How to add animation to angularjs uib-alert directive

查看:23
本文介绍了如何向 angularjs uib-alert 指令添加动画的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想为推入数组的新警报添加淡入动画,为已解除的警报添加淡出动画.

I want to add fade-in animation for new alerts pushed into array and fade-out for dismissed alerts.

警报会在 5 秒后自动关闭.

Alerts are dismissed automatically after 5 seconds.

我已经包含了 angular-animate ui-bootstrapui-bootstrap-tpls 库.

I've already included angular-animate ui-bootstrap and ui-bootstrap-tpls libraries.

如何让这些动画正常工作?

How can i get these animations working?

查看演示:http://plnkr.co/edit/ecbCA7h2zVA4XnvUHfFX?p=preview

<html ng-app="myApp">

  <head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css" />
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
    <script src="https://code.angularjs.org/1.5.0/angular-animate.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/1.1.2/ui-bootstrap.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/1.1.2/ui-bootstrap-tpls.js"></script>
    <link rel="stylesheet" href="style.css" />
    <script src="script.js"></script>
  </head>

  <body ng-controller="MainController">
    <h1>Alert With Animation</h1>
    <uib-alert 
      ng-repeat="alert in alerts" 
      type="{{alert.type}}" 
      dismiss-on-timeout="5000" 
      close="alerts.splice($index, 1);">{{alert.msg}}
    </uib-alert>
    <input type='text' ng-model='msg' />
    <button ng-click="addAlert(msg,'danger')">Add Alert</button>
  </body>

</html>

脚本

(function() {

  var app = angular.module("myApp", ['ui.bootstrap', 'ngAnimate']);

  app.controller("MainController", function($scope) {

    $scope.alerts = [];

    $scope.msg = "No Animation!";

    $scope.addAlert = function(msg, type) {
      $scope.alerts.push({
        msg: msg,
        type: type
      });
    };

  });

}());

推荐答案

答案基于 Pankaj 的评论.

Answer is based on Pankaj's comment.

这让我看到了这篇文章:http://www.yearofmoo.com/2013/08/remastered-animation-in-angularjs-1-2.html

Which lead me to this article: http://www.yearofmoo.com/2013/08/remastered-animation-in-angularjs-1-2.html

  • class='repeat-item' 添加到 <uib-alert>..</uib-alert> 元素.
  • 为动画效果添加了适当的样式.

  • added class='repeat-item' to <uib-alert>..</uib-alert> element.
  • added proper stylings for animation effects.

<style type="text/css">
.repeat-item.ng-enter,
.repeat-item.ng-leave {
  -webkit-transition: 0.5s linear all;
  transition: 0.5s linear all;
}

.repeat-item.ng-enter,
.repeat-item.ng-leave.ng-leave-active {
  opacity: 0;
}

.repeat-item.ng-leave,
.repeat-item.ng-enter.ng-enter-active {
  opacity: 1;
}
</style>

查看工作演示:https://plnkr.co/edit/CK2lV4mBVGs8q5gyYklE?p=preview

当您第一次点击添加提醒时,没有淡入动画.之后,一切似乎都很好.

When you click to add an alert for the very first time, there is no fade-in animation. After that, everything seems OK.

这篇关于如何向 angularjs uib-alert 指令添加动画的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆