[Vuejs]-How to make a loading Spinner with my logo

0๐Ÿ‘

You can just use CSS and setup an animation to have the logo spin

here

0๐Ÿ‘

.mylogo{
  animation: rotation 3s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
<img src="https://www.transparentpng.com/download/circle-png/5CC7Ci-circle-png-picture.png" class="mylogo" width="80px"  />

Leave a comment