是否可以在 ng-style 中添加自定义 css 属性,即 css 变量?
我试过用这个:
<li ng-repeat="item in vm.items" ng-style="{'--index': $index}">{{item.name}}</li>
但这不起作用我在开发人员工具中检查时在样式属性中没有 --index 。
是否可以在 ng-style 中添加自定义 css 属性,即 css 变量?
我试过用这个:
<li ng-repeat="item in vm.items" ng-style="{'--index': $index}">{{item.name}}</li>
但这不起作用我在开发人员工具中检查时在样式属性中没有 --index 。
不,您必须输入有效的 CSS 属性,例如
<li ng-repeat="item in vm.items" ng-style="{'z-index': $index}">{{item.name}}</li>
试试这种方式:
<body ng-app="myApp" ng-controller="myCtrl">
<h1 ng-style="myObj">Welcome</h1>
<script>
//u can put that <script> content in a separadet file
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
$scope.myObj = {
"color" : "white",
"background-color" : "coral",
"font-size" : "60px",
"padding" : "50px"
}
});
</script>
</body>