Reaction particle

This commit is contained in:
syuilo
2020-02-22 01:20:58 +09:00
parent ccc27bcc14
commit d4324dc0cb
4 changed files with 79 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
import Particle from '../components/particle.vue';
export default {
bind(el, binding, vn) {
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);
});
}
};