ハイライトホバー項目CSS
ion-item:hover a {
background-color: slategray !important;
}
ハイライトアクティブな項目
と純粋
私を助けてください
ng-classを使用してアクティブなCSSクラスを追加できます。 この「アクティブ」クラスのカスタムCSSを定義します。
<ion-item ng-repeat="item in familleItems" ng-class="{'activeItem': active}">
<div ng-click="selectSousFamille(item.Numfam)">{{item.Nomfam}}</div>
</ion-item>
例:
<ion-content padding="true">
<ul class="product-list">
<!-- You need a .selected in your stylesheet -->
<li ng-repeat="(key, item) in products" ng-class="{'selected':item.selected}">
<div class="list card" ng-click="select_item(key)">
<p><span>{{item.title}}</span></p>
<div class="item item-image">
<img ng-src="{{item.photo}}">
</div>
</div>
</li>
</ul>
</ion-content>
// Your Stylesheet
.selected {
// Highlight style
}
// Your controller
.controller('SomeController', ['$scope', function ($scope) {
// Expects an array, your product list may look like this
$scope.products = [
{ "title": "Super Man's Tommy Toy", "price": 20000, "thumb": "DO_RE_MI.jpg" },
{ "title": "An old picture of Seldom", "price": 1999, "thumb": "MI_RE_DO.gif" }
];
// Your logic for selection, e.g. unselect, select or something
$scope.select_item = function (key) {
if ($scope.products[key]) {
$scope.products[key].selected = true;
}
}
}]);
Source
エラー: エラー:[$ parse:syntax]構文エラー:トークン '。' [{select.selected:selected}]で始まる式[{item.selected:selected}]の列6で[:]を予期しています。 – Imoum
ng-class class 'selected'の周りに ''を追加しましたか? ng-class = "{'selected':item.selected}」を選択します。私は上記の例を編集しました。 –