113

这应该是一个简单的问题,但我似乎找不到解决方案。

我有以下标记:

<div style="width:20px; height:20px; margin-top:10px; border:solid 1px black; background-color:#ff0000;"></div>

我需要将背景颜色绑定到范围,所以我尝试了这个:

<div style="{width:20px; height:20px; margin-top:10px; border:solid 1px black; background-color:{{data.backgroundCol}};}"></div>

那没有用,所以我做了一些研究并发现ng-style,但这没有用,所以我尝试将动态部分取出并仅将样式硬编码为ng-style,就像这样......

<div ng-style="{width:20px; height:20px; margin-top:10px; border:solid 1px black; background-color:#ff0000;}"></div>

这甚至行不通。我误解了它的ng-style工作原理吗?有没有办法放入{{data.backgroundCol}}一个简单的样式属性并让它插入值?

4

6 回答 6

192

ngStyle 指令允许您在 HTML 元素上动态设置CSS样式。

表达式,它评估一个对象,其键是 CSS 样式名称,值是这些 CSS 键的对应值。由于某些 CSS 样式名称不是对象的有效键,因此必须引用它们。

ng-style="{color: myColor}"

您的代码将是:

<div ng-style="{'width':'20px', 'height':'20px', 'margin-top':'10px', 'border':'solid 1px black', 'background-color':'#ff0000'}"></div>

如果要使用范围变量:

<div ng-style="{'background-color': data.backgroundCol}"></div>

是一个使用 的小提琴示例ngStyle,下面是运行代码段的代码:

angular.module('myApp', [])
.controller('MyCtrl', function($scope) {
  $scope.items = [{
      name: 'Misko',
      title: 'Angular creator'
    }, {
      name: 'Igor',
      title: 'Meetup master'
    }, {
      name: 'Vojta',
      title: 'All-around superhero'
    }

  ];
});
.pending-delete {
  background-color: pink
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="myApp" ng-controller='MyCtrl' ng-style="{color: myColor}">

  <input type="text" ng-model="myColor" placeholder="enter a color name">

  <div ng-repeat="item in items" ng-class="{'pending-delete': item.checked}">
    name: {{item.name}}, {{item.title}}
    <input type="checkbox" ng-model="item.checked" />
    <span ng-show="item.checked"/><span>(will be deleted)</span>
  </div>
  <p>
    <div ng-hide="myColor== 'red'">I will hide if the color is set to 'red'.</div>
</div>

于 2014-01-26T14:25:32.443 回答
24

最简单的方法是调用样式的函数,并让函数返回正确的样式。

<div style="{{functionThatReturnsStyle()}}"></div>

在你的控制器中:

$scope.functionThatReturnsStyle = function() {
  var style1 = "width: 300px";
  var style2 = "width: 200px";
  if(condition1)
     return style1;
  if(condition2)
     return style2;
}
于 2014-10-10T14:19:50.313 回答
18

直接来自ngStyle 文档

表达式,它评估一个对象,其键是 CSS 样式名称,值是这些 CSS 键的对应值。

<div ng-style="{'width': '20px', 'height': '20px', ...}"></div>

所以你可以这样做:

<div ng-style="{'background-color': data.backgroundCol}"></div>

希望这可以帮助!

于 2014-01-26T14:21:16.373 回答
14

一般而言,您可以使用 ng-if 和 ng-style 的组合来合并条件更改和背景图像的更改。

<span ng-if="selectedItem==item.id"
      ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_active.png)',
                'background-size':'52px 57px',
                'padding-top':'70px',
                'background-repeat':'no-repeat',
                'background-position': 'center'}">
 </span>
 <span ng-if="selectedItem!=item.id"
       ng-style="{'background-image':'url(../images/'+'{{item.id}}'+'_deactivated.png)',
                'background-size':'52px 57px',
                'padding-top':'70px',
                'background-repeat':'no-repeat',
                'background-position': 'center'}">
 </span>
于 2014-09-21T15:23:52.710 回答
0

只需这样做:

<div ng-style="{'background-color': '{{myColorVariable}}', height: '2rem'}"></div>

于 2019-09-30T06:24:07.050 回答
0

我会说您应该将不会更改的样式放入常规style属性中,并将条件/范围样式放入ng-style属性中。此外,字符串键不是必需的。对于连字符分隔的 CSS 键,请使用驼峰式。

<div ng-style="{backgroundColor: data.backgroundCol}" style="width:20px; height:20px; margin-top:10px; border:solid 1px black;"></div>
于 2018-02-08T19:08:56.710 回答