如何在angularjs

时间:2018-02-13 08:34:24

标签: css angularjs ng-class

如何传递类:使用ng-class之后如何添加属性到现有的css类 我有css作为

<style>
customcss:after{
 border-top: 7px solid green;
}
</style>

我想使用ng-class或ng-style

动态变色

我用作

<html>
    <div ng-class="{customcss: true}" ng-style="topcolor('yellow')"></div>
 </html>
<script>
 $scope.topcolor = function (color) {
                return '7px solid ' + color;
            }
</script>
enter code here
像上面我曾经使用的那样,但颜色没有动态变化

请帮助我解决这个问题。

1 个答案:

答案 0 :(得分:0)

在HTML中

$scope.topcolor = function(value) {
          return { "border-top": '7px solid ' + value};
      }

在控制器中:

{{1}}

试试这个。