fuse-masonry is a basic Masonry layout component to show items in Masonry grid layout. Since it doesn't use any other third party library or complex calculations to keep everything smooth and fast;
If you don't need to mix and match different width items and don't need to sort items based on their heights, fuse-masonry will do the job for you and it will do it very smoothly.
Exported as: fuseMasonry
Name | Description | Default |
---|---|---|
@Input()
columnsTemplate: TemplateRef
|
Column template for masonry component to lay out. |
undefined
|
@Input()
columns: number
|
Number of columns to create |
undefined
|
@Input()
items: any[]
|
Items to distribute into columns |
[]
|
This component doesn't have any public methods.
fuse-masonry doesn't provide a default template or styling to the items. You can think of it as a helper function but in a component form:
fuse-masonry doesn't provide a way of changing the column count depending on breakpoints but this can easily be handled by
combining fuse-masonry
with FuseMediaWatcherService
: