2020-02-21 16:20:58 +00:00
|
|
|
import Particle from '../components/particle.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
bind(el, binding, vn) {
|
2020-06-21 13:34:28 +00:00
|
|
|
// 明示的に false であればバインドしない
|
|
|
|
if (binding.value === false) return;
|
2020-02-21 16:20:58 +00:00
|
|
|
el.addEventListener('click', () => {
|
|
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
|
|
|
|
const x = rect.left + (el.clientWidth / 2);
|
|
|
|
const y = rect.top + (el.clientHeight / 2);
|
|
|
|
|
|
|
|
const particle = new Particle({
|
|
|
|
parent: vn.context,
|
|
|
|
propsData: {
|
|
|
|
x,
|
|
|
|
y
|
|
|
|
}
|
|
|
|
}).$mount();
|
|
|
|
|
|
|
|
document.body.appendChild(particle.$el);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|