Angular2 component for https://github.com/metafizzy/isotope
npm install angular2-isotope
> angular2-isotope is in development and not ready for production use.
> Feel free to install and try it out, but depend on it at your own risk.
npm install angular2-isotope --save
If you're using SystemJS add angular2-isotope and masonry-layout to your configuration:
``json`
packages: {
"angular2-isotope": { "defaultExtension": "js", "main": "index" }
},
map: {
"angular2-isotope": "node_modules/angular2-isotope",
"isotope-layout": "node_modules/isotope-layout/dist/isotope.pkgd.js"
}
Import IsotopeModule into your app's modules:
` typescript
import { IsotopeModule } from 'angular2-isotope';
@NgModule({
imports: [
IsotopeModule
]
})
`
`typescript
@Component({
selector: 'my-component',
template:
,
styles: [
.brick { width: 200px; }
]`
})
class MyComponent {
bricks = [
{title: 'Brick 1'},
{title: 'Brick 2'},
{title: 'Brick 3'},
{title: 'Brick 4'},
{title: 'Brick 5'},
{title: 'Brick 6'}
]
}
The options-attribute takes an object with the following properties:
* itemSelector: string;
* columnWidth: number | string;
* gutter: number;
* percentPosition: boolean;
* stamp: string;
* fitWidth: boolean;
* originLeft: boolean;
* originTop: boolean;
* containerStyle: string;
* transitionDuration: string;
* resize: boolean;
* initLayout: boolean;
#### Examples
Inline object:
`html`
From parent component:
`javascript
import { IsotopeOptions } from 'angular2-isotope';
public myOptions: IsotopeOptions = {
transitionDuration: '0.8s'
};
``html`
not available.Delay adding brick until all images in brick are loaded.
To activate imagesLoaded set
useImagesLoaded to true.
`html
`
index.html:
`html
`Events
$3
Triggered after a layout and all positioning transitions have completed.
>http://masonry.desandro.com/events.html#layoutcomplete$3
Triggered after an item element has been removed.
>http://masonry.desandro.com/events.html#removecomplete$3
`html
``