我的代码中某处有这个div。

<div ng-class="className" >{{className}}</div>


在某些时候,我正在通过ng-click调用changeClass函数来更改此div的类。

     $scope.changeClass = function(){
          console.log($scope.className)
              if ($scope.className === "expand-icon")
                 $scope.className = "expand-icon.expanded";
              else
                 $scope.className = "expand-icon";
  };


我可以看到由于console.log而导致的类更改,并且页面上还输出了{{className}}。但是,css类似乎没有被应用。

实际上,它是带有动画的“ +”符号,需要转换为“-”。这是CSS:

 /* + button */

.expand-icon {
  height: 32px;
  width: 32px;
  position: relative;
}
.expand-icon::before, .expand-icon::after {
  content: " ";
  width: 32px;
  height: 6px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.15s cubic-bezier(.42, 0, .58, 1);
  opacity: 1;
  border-radius: 2px;
}
.expand-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.expand-icon::after {
  transform: translate(-50%, -50%);
}

.expand-icon {
  height: 32px;
  width: 32px;
  position: relative;
}
.expand-icon.expanded::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.expand-icon.expanded::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
}


因此,应用了expand-icon,但是expand-icon.expanded没有任何影响,因为我正在使用此ng-class技巧。知道为什么吗?

最佳答案

您应将点替换为空格:$scope.className = "expand-icon expanded";

或者更好的是,使用ng-class的另一种表示法:

// probably rename it to something like $scope.toggleExpanded()
$scope.changeClass = function(){
    $scope.expanded = !$scope.expanded;
};


并在您的html中:

<div class="expand-icon"
     ng-class="{ expanded: expanded }">{{className}}</div>


这将始终应用您的expand-icon类,并且仅在expanded属性为true时才应用$scope.expanded类。

10-05 21:04
查看更多