vue-easeljs
vue-easeljs copied to clipboard
A Vue.js plugin to control an HTML5 canvas using EaselJS
you can fix this issue with; ` import { createApp } from 'vue'; import App from './App.vue'; import VueEaselJS from 'vue-easeljs'; const app = createApp(App); app.use(VueEaselJS); app.mount('#app'); `
If an object is flipped horizontal and aligned left, it will actually be aligned right. This is reasonable but counter-intuitive. Alignment should check the flip setting and switch alignment based...
When alpha=0, an object will not emit @ rollover and @ mouseover. But if it has a hitArea with alpha>0, it can be invisible but still emit those events.
Font resources are not downloaded until they are needed in Chromium browsers. So there is a moment when text has the wrong font while the browser loads it. Provide a...
Some animation options have a `next` option which changes the animation. When that happens, the parent component may wish to receive updates. By using `v-model`, we can get that two-way...
I can't see where EaselJS offers this option explicitly. But it can be done. For visual elements, any images can be loaded using `new Image` which has event handlers for...