ankurk91 / vue-loading-overlay

Vue.js component for full screen loading indicator :cyclone:
https://ankurk91.github.io/vue-loading-overlay/
MIT License
1.25k stars 102 forks source link

Loading Spinner with a Specific image #78

Closed kayaaliemre closed 3 years ago

kayaaliemre commented 3 years ago

Hello, I could not find any props like mode: 'picture', could you think that implement this feature. May be it will be really useful. I am using your loading overlay and I would like to do like spinner in below. More information you can check this;

https://www.cssscript.com/rotating-loading-spinner-javascript-zlataloader-js/

ankurk91 commented 3 years ago

The component provides a slot where you can place your own html

 <loading :active.sync="isLoading">
      <img src="your-image.png" class="my-image" alt="image" width="50px">
</loading>

Please read the docs and see example folder

kayaaliemre commented 3 years ago

Sorry, I could not find. :) Thank you very much