0
我正在使用angular-ui Modal。當我關閉模式時,模式框會淡出並且背景消失。這是期望的行爲。UIB模態背景不衰減
但是,當我打開模式,雖然模式框中淡入淡出,背景只是出現沒有淡入。我無法確定爲什麼。
這是打開模態代碼:
$scope.update_onclick = function() {
$rootScope.modalInstance = $uibModal.open({
templateUrl: 'webapp/packagetracker/update.html',
controller: 'PackageTrackerController',
backdrop: 'static'
});
};
這是從Chrome的開發者工具的背景下DIV當模式是開放的
<div uib-modal-backdrop="modal-backdrop" class="modal-backdrop fade ng-scope in" ng-style="{'z-index': 1040 + (index && 1 || 0) + index*10}" uib-modal-animation-class="fade" modal-in-class="in" modal-animation="true" data-bootstrap-modal-aria-hidden-count="1" aria-hidden="true" style="z-index: 1040;"></div>
我使用angularjs 1.4.8, angular-animate 1.4.8和ui-bootstrap-tpls-2.5.0。 用於添加這些文件的腳本標籤按此順序排列。
任何幫助,將不勝感激。