A Pen by Qing Sheng on CodePen.
Created
September 16, 2015 18:23
-
-
Save davidmaogomezz/019f0db8eb155bcefd1f to your computer and use it in GitHub Desktop.
Ionic collapsible list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html ng-app="ionicApp"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | |
<title>Ionic collapsible list</title> | |
<link href="//code.ionicframework.com/1.0.0-beta.12/css/ionic.css" rel="stylesheet"> | |
<script src="//code.ionicframework.com/1.0.0-beta.12/js/ionic.bundle.js"></script> | |
</script> | |
</head> | |
<body ng-controller="MyCtrl"> | |
<ion-header-bar class="bar-positive"> | |
<h1 class="title">Ionic collapsible list</h1> | |
</ion-header-bar> | |
<ion-content> | |
<ion-list> | |
<div ng-repeat="group in groups"> | |
<ion-item class="item-stable" | |
ng-click="toggleGroup(group)" | |
ng-class="{active: isGroupShown(group)}"> | |
<i class="icon" ng-class="isGroupShown(group) ? 'ion-minus' : 'ion-plus'"></i> | |
| |
Group {{group.name}} | |
</ion-item> | |
<ion-item class="item-accordion" | |
ng-repeat="item in group.items" | |
ng-show="isGroupShown(group)"> | |
{{item}} | |
</ion-item> | |
</div> | |
</ion-list> | |
</ion-content> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('ionicApp', ['ionic']) | |
.controller('MyCtrl', function($scope) { | |
$scope.groups = []; | |
for (var i=0; i<10; i++) { | |
$scope.groups[i] = { | |
name: i, | |
items: [], | |
show: false | |
}; | |
for (var j=0; j<3; j++) { | |
$scope.groups[i].items.push(i + '-' + j); | |
} | |
} | |
/* | |
* if given group is the selected group, deselect it | |
* else, select the given group | |
*/ | |
$scope.toggleGroup = function(group) { | |
group.show = !group.show; | |
}; | |
$scope.isGroupShown = function(group) { | |
return group.show; | |
}; | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.list .item.item-accordion { | |
line-height: 38px; | |
padding-top: 0; | |
padding-bottom: 0; | |
transition: 0.09s all linear; | |
} | |
.list .item.item-accordion.ng-hide { | |
line-height: 0px; | |
} | |
.list .item.item-accordion.ng-hide-add, | |
.list .item.item-accordion.ng-hide-remove { | |
display: block !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment