Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexkhymenko/ngx-collapse-animated

Bootstrap-like collapse for Angular
https://github.com/alexkhymenko/ngx-collapse-animated

angular bootstrap collapse collapsible

Last synced: about 1 month ago
JSON representation

Bootstrap-like collapse for Angular

Awesome Lists containing this project

README

        

# NgxCollapseAnimated

Bootstrap-like collapse for Angular

Try it https://stackblitz.com/~/github.com/AlexKhymenko/ngx-collapse-animated

## Installation

- Simply run `npm i ngx-collapse-animated`.
- Add animation `provideAnimations` provider to your project
`````
bootstrapApplication(AppComponent, {
providers: [provideAnimations(),
provideZoneChangeDetection({ eventCoalescing: true }),
provideRouter(routes)]
}).catch((err) => console.error(err));

`````
- Add the following css in styles.scss of your application
````
.collapse:not(.show) {
display: none;
}

.collapsing {
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
````

or import scss file
`````
@use 'ngx-collapse-animated';
`````

## Usage
Add ngxCollapseAnimated directive to where the content should be visible
`````


Show animation

Hello to You!

`````

Import NgxCollapseAnimatedDirective in Your component
`````
@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet, NgxCollapseAnimatedDirective],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'collapse-animated';

visible = true;
}
`````