0

Hi i need to make a Loading spinner with css, js or anyone from my Logo. I have the Logo as PNG, GIF, SVG all formats. I want use it for longer site loads, picture loads or anyone and integrate it in my Vue3 Project.

Have anyone Solutions or guides for that, iam on google at 4 hours and nothing shows me right that.

thanks

D36u9
  • 9
  • 4
  • 2
    4 hours on google and not a single article about your problem? LOL ok ill play dumb https://stackoverflow.com/questions/16771225/css3-rotate-animation – Dan Apr 14 '21 at 22:18

2 Answers2

0

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

here

Pedro Lopes
  • 96
  • 2
  • 3
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"  />
SirHectorin
  • 177
  • 11