Ginie
Ginie
Here is an example on stackblitz https://stackblitz.com/edit/spritespin-example-scroll?file=index.html
This seems to be only a problem of the spritespin page but not spritespin itself. The page shows the examples using an iframe. To make it work in firefox, the...
i can't tell from the top of my head why there is that difference. But in that case i would go for a custom plugin, that shows a frame based...
i can not reproduce it, at least not in the current responsive example https://spritespin.ginie.eu/samples/#/basics-responsive It seems like there is logic active on spritespin element, that no longer have the spritespin...
i suspect that during resize the spritespin instances are recreated somwhere in your code. You must ensure to destroy the spritespin instances when the elements are removed/recreated. Do you have...
but you still might have a memory leak. In the console take a look how many instances you have before and after resize ```js SpriteSpin.instances ```
no, there is no such option. However, you should be able to stop event propagation if you register own event listener around the spritespin instance. https://developer.mozilla.org/en-US/docs/Web/API/Event/stopImmediatePropagation
then you must have miss spelled the function name. This is how it would work: ```js mounted: function() { $(this.$el).on('mousedown', (e) => { e.stopImmediatePropagation() }); // ... } ``` you...
Please check out the beta version - https://spritespin-beta.ginie.eu/ The size of the outer container is now controlled by the developer. SpriteSpin tries then to fit in that container. You can...
there is no such option. This is however possible to implement as a Plugin to SpriteSpin. Displaying data is not a problem, as you can listen to `onLoad` and `onFrame`...