VuetifyLogo.vue 316 B

12345678910111213141516171819202122
  1. <template>
  2. <img
  3. class="VuetifyLogo"
  4. alt="Vuetify Logo"
  5. src="/vuetify-logo.svg"
  6. >
  7. </template>
  8. <style>
  9. .VuetifyLogo {
  10. height: 180px;
  11. width: 180px;
  12. transform: rotateY(560deg);
  13. animation: turn 3.5s ease-out forwards 1s;
  14. }
  15. @keyframes turn {
  16. 100% {
  17. transform: rotateY(0deg);
  18. }
  19. }
  20. </style>