2016-07-03 5 views

답변

1

나는 uibModalmodal가 열린 후 당신이 HTML 부분에 CSS 속성을 설정하려고 수있는 서비스의 종류를 제공 같아요 :

 $scope.open = function (size) { 
     //call a function that sets CSS property to transparent   
     $scope.setCSSTotransparent(); 
     var modalInstance = $uibModal.open({ 
      animation: $scope.animationsEnabled, 
      templateUrl: 'myModalContent.html', 
      controller: 'ModalInstanceCtrl', 
      size: size, 
      resolve: { 
      items: function() { 
       return $scope.items; 
      } 
      } 
     });