123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div class="hot-spot">
- <img
- class="hot-spot__img"
- src="@/assets/hotspot.png"
- alt=""
- @dragstart.prevent
- >
- </div>
- </template>
- <style lang="less" scoped>
- .hot-spot {
- width: 50px;
- height: 50px;
- cursor: pointer;
- > .hot-spot__img {
- width: 100%;
- animation: show-hide 1.8s infinite;
- }
- }
- @keyframes show-hide {
- 0% {
- opacity: 0;
- }
- 50% {
- opacity: 1;
- }
- 100% {
- opacity: 0;
- }
- }
- </style>
|