26 lines
495 B
JavaScript
26 lines
495 B
JavaScript
/* eslint-disable no-new */
|
|
|
|
import Isotope from 'isotope-layout/dist/isotope.pkgd.js'
|
|
import onmount from 'onmount'
|
|
import on from 'dom101/on'
|
|
import qsa from 'dom101/query-selector-all'
|
|
|
|
/*
|
|
* Behavior: Isotope
|
|
*/
|
|
|
|
onmount('[data-js-h3-section-list]', function () {
|
|
const iso = new Isotope(this, {
|
|
itemSelector: '.h3-section',
|
|
transitionDuration: 0
|
|
})
|
|
|
|
const images = qsa('img', this)
|
|
|
|
images.forEach(image => {
|
|
on(image, 'load', () => {
|
|
iso.layout()
|
|
})
|
|
})
|
|
})
|