9

我有一个微调器,显示为ng-show="loading>0"

有没有办法可以延迟显示这个微调器(比如 1 秒)?

我不能使用超时,因为多个请求加载计数器会不同步。

我需要的是ng-show通过 CSS 转换或类似的延迟

4

3 回答 3

7

我怀疑您正在寻找一个包含延迟的通用微调器。标准,展示之后200ms或类似的东西。

这是指令的完美候选者,实际上很容易实现。

我知道这是一个很长的代码示例,但主要部分是指令。这很简单。

在一些可配置的延迟后收听一些范围变量并显示。如果操作花费的时间比延迟时间长,它将被取消并且永远不会出现。

(function() {
  'use strict';

  function SpinnerDirective($timeout) {
    return {
      restrict: 'E',
      template: '<i class="fa fa-cog fa-spin"></i>',
      scope: {
        show: '=',
        delay: '@'
      },
      link: function(scope, elem, attrs) {
        var showTimer;

        //This is where all the magic happens!
        // Whenever the scope variable updates we simply
        // show if it evaluates to 'true' and hide if 'false'
        scope.$watch('show', function(newVal){
          newVal ? showSpinner() : hideSpinner();
        });
        
        function showSpinner() {
          //If showing is already in progress just wait
          if (showTimer) return;

          //Set up a timeout based on our configured delay to show
          // the element (our spinner)
          showTimer = $timeout(showElement.bind(this, true), getDelay());
        }

        function hideSpinner() {
          //This is important. If the timer is in progress
          // we need to cancel it to ensure everything stays
          // in sync.
          if (showTimer) {
            $timeout.cancel(showTimer);
          }

          showTimer = null;

          showElement(false);
        }

        function showElement(show) {
          show ? elem.css({display:''}) : elem.css({display:'none'});
        }

        function getDelay() {
          var delay = parseInt(scope.delay);

          return angular.isNumber(delay) ? delay : 200;
        }
      }
    };
  }

  function FakeService($timeout) {
    var svc = this,
      numCalls = 0;

    svc.fakeCall = function(delay) {
      numCalls += 1;

      return $timeout(function() {

        return {
          callNumber: numCalls
        };

      }, delay || 50);
    };
  }

  function MainCtrl(fakeService) {
    var vm = this;

    vm.makeCall = function(delay) {
      vm.isBusy = true;
      fakeService.fakeCall(delay)
        .then(function(result) {
          vm.result = result;
        }).finally(function() {
          vm.isBusy = false;
        });
    }
  }

  angular.module('spinner', [])
    .service('fakeService', FakeService)
    .controller('mainCtrl', MainCtrl)
    .directive('spinner', SpinnerDirective);

}());
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js"></script>

<div class="container" ng-app="spinner">
  <div class="row" ng-controller="mainCtrl as ctrl">
    <div class="col-sm-12">
      <h2>{{ctrl.result | json}}
        <spinner show="ctrl.isBusy" delay="200"></spinner>
      </h2>
      <button type="button" 
              class="btn btn-primary" 
              ng-click="ctrl.makeCall(2000)" 
              ng-disabled="ctrl.isBusy">Slow Call
      </button>
      <button type="button" 
              class="btn btn-default" 
              ng-click="ctrl.makeCall()" 
              ng-disabled="ctrl.isBusy">Fast Call
      </button>
    </div>
  </div>
</div>

于 2015-01-08T15:33:15.153 回答
5

这是一种更简单的方法,可以满足我的需求。根据您的操作,您可以将功能setDelay()与元素联系起来。例如,在我的情况下,我绑定setDelay()到一个选择输入。

触发 HTML:

<select class="first-option"
    ng-change="setDelay()" 
    ng-options="o.label for o in download.options" 
    ng-model="optionModel" required>
</select>

在您的控制器中,添加一个setDelay将更改标志的简单函数$scope.delay

$scope.setDelay = function(){
    $scope.delay = true;
    $timeout(function(){
        $scope.delay = false;
    }, 200);
};

然后,您可以简单地$scope.delay在 ng-show 中用作标志:

<div class="loading-div" ng-show="delay">
    <img src="loading_spinner.gif">
</div>

并在加载完成后显示内容:

<div ng-show="!delay">
    Content is loaded.
</div>

现在,每次用户在下拉菜单中选择一个新值时,都会触发$scope.delay设置为true使微调器显示,当达到 时200,将设置为false使微调器隐藏。

于 2015-07-13T21:57:49.560 回答
4

我认为纯 CSS 解决方案是最好的方法。

这是一个plunker展示如何做到这一点。使用 ng-animate 类进行转换并应用 10ms 转换的转换延迟(0s 转换不适用于 css)。

代码的相关部分:

.your-element-class.ng-hide {
  opacity: 0;
}

.your-element-class.ng-hide-add,
.your-element-class.ng-hide-remove {
  transition: all linear 0.01s 1s;
}

为其使用自定义指令的唯一原因是在您的代码中使用不同延迟值的大量时间。自定义指令允许更多的延迟时间灵活性。

于 2017-06-13T03:57:45.877 回答