ng-style和custom css属性

时间:2016-12-14 14:09:28

标签: javascript css angularjs css-variables

是否可以在ng-style中添加自定义css属性又名css变量?

我试过用这个:

<li ng-repeat="item in vm.items" ng-style="{'--index': $index}">{{item.name}}</li>

但这不起作用我在开发人员工具中检查时没有使用样式属性中的索引。

2 个答案:

答案 0 :(得分:1)

不,你必须输入有效的CSS属性,如

<li ng-repeat="item in vm.items" ng-style="{'z-index': $index}">{{item.name}}</li>

答案 1 :(得分:0)

尝试这种方式:

<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>