AnimationIndex.vue 560 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="animation-index">
  3. {{animationIndex}}
  4. </div>
  5. </template>
  6. <script lang="ts">
  7. export default {
  8. name: 'animation-index',
  9. props: {
  10. animationIndex: {
  11. type: Number,
  12. required: true,
  13. },
  14. },
  15. }
  16. </script>
  17. <style lang="scss" scoped>
  18. .animation-index {
  19. position: absolute;
  20. top: 0;
  21. left: -22px;
  22. font-size: 12px;
  23. width: 20px;
  24. height: 20px;
  25. background-color: #fff;
  26. color: #333;
  27. border: 1px solid #666;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. margin-bottom: 3px;
  32. }
  33. </style>