Skip to content

Instantly share code, notes, and snippets.

@GreenFlag31
Last active August 13, 2023 09:00
Show Gist options
  • Save GreenFlag31/3f058e6c54826738384f03651a82a246 to your computer and use it in GitHub Desktop.
Save GreenFlag31/3f058e6c54826738384f03651a82a246 to your computer and use it in GitHub Desktop.
app component class
openModalComponent() {
this.modalService.open(ModalContentComponent, {
animations: {
modal: {
enter: 'enter-scaling 0.3s ease-out',
leave: 'fade-out 0.3s forwards',
},
overlay: {
enter: 'fade-in 1s',
leave: 'fade-out 0.3s forwards',
},
},
size: {
width: '40rem',
},
});
}
close() {
this.modalService.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment