gpt4 book ai didi

javascript - 在 AngularJS 中交替使用多个 CSS 类

转载 作者:行者123 更新时间:2023-11-29 10:11:15 24 4
gpt4 key购买 nike

假设您有一个简单的列表,可以是一个或 10 个元素。你不知道。您有 5 个 CSS 类要以规则的交替模式显示。执行此操作的最佳方法是什么?

示例 HTML:

<div ng-repeat="item in items | orderBy: 'Title'">
<div class="clearfix" ng-if="$index % 3 == 0"></div>
<div class="col-sm-4">
<div class="tile" ng-class="{ 'purple': expression1, 'red': expression2, 'green': expression3, 'blue': expression4, 'orange': expression5 }">
<h3 class="title">{{item.Title}}</h3>
<div>{{item.Description}}</div>
</div>
</div>
</div>

CSS

.tile.purple {
background: #5133ab;
}
.tile.red {
background: #ac193d;
}
.tile.green {
background: #00a600;
}
.tile.blue {
background: #2672ec;
}
.tile.orange {
background: #dc572e;
}

考虑到这个例子,有没有人知道确保类(class)始终交替的最佳方法?

最佳答案

angular.module('myApp', [])
.controller('MyCtrl', function($scope) {
$scope.items = [1,2,3,4,5,6,7,8,9,10];
// make an array of color classes
$scope.colors = ['purple', 'red', 'green', 'blue', 'orange'];
})
;
<div ng-app="myApp" ng-controller="MyCtrl">
<div ng-repeat="item in items">
<!-- use modulus operator to pick the right class per item -->
<div class="tile" ng-class="colors[$index % colors.length]">{{item}}</div>
</div>
</div>

Click here for live demo.

关于javascript - 在 AngularJS 中交替使用多个 CSS 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33227982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com