HotSpot.vue 494 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class="hot-spot">
  3. <img
  4. class="hot-spot__img"
  5. src="@/assets/hotspot.png"
  6. alt=""
  7. @dragstart.prevent
  8. >
  9. </div>
  10. </template>
  11. <style lang="less" scoped>
  12. .hot-spot {
  13. width: 50px;
  14. height: 50px;
  15. cursor: pointer;
  16. > .hot-spot__img {
  17. width: 100%;
  18. animation: show-hide 1.8s infinite;
  19. }
  20. }
  21. @keyframes show-hide {
  22. 0% {
  23. opacity: 0;
  24. }
  25. 50% {
  26. opacity: 1;
  27. }
  28. 100% {
  29. opacity: 0;
  30. }
  31. }
  32. </style>