css3 - Accordion using AngularJS and CSS animations -
using angular js animate , css animation, trying create expand/collapse (accordion) similar bootstrap collapse seen here: http://getbootstrap.com/javascript/#collapse
i have issue expandable items, pop , forth depending on height of expanded "show" content. see plunker more visual
my work far:
var expandcollapseapp = angular.module('expandcollapseapp', ['nganimate']); expandcollapseapp.controller('expandcollapsectrl', function ($scope) { $scope.active = true; $scope.active1 = true; });
you should use ui bootstrap accordion. component written in pure angularjs.
Comments
Post a Comment