top.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view class="wrapper-1">
  3. <view class="titleBox">
  4. <view class="title" :style="{width:data.name.length*60+'rpx',transform: 'translateX('+data.name.length*60+'rpx'+')'}">{{ data.name }}</view>
  5. </view>
  6. <view class="overflow-hidden">
  7. <barrage ref="barrage" animal-id="barrage3" />
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. import resource from '@/utils/resource'
  13. import barrage from './../award/barrage.vue'
  14. export default {
  15. components: { barrage },
  16. props: {
  17. data: Object,
  18. horse: Array,
  19. type: [Number,String]
  20. },
  21. data() {
  22. return {
  23. resource
  24. }
  25. },
  26. watch: {
  27. horse(newValue) {
  28. this.$refs.barrage.start(newValue)
  29. }
  30. },
  31. mounted() {
  32. this.$refs.barrage.start(this.horse)
  33. },
  34. computed: {
  35. hide() {
  36. return !this.$store.state.hide
  37. }
  38. },
  39. methods: {
  40. showRecord() {
  41. this.$emit('onShowRecord', true)
  42. },
  43. showRule() {
  44. this.$router.push('playing_method', { type: this.type })
  45. },
  46. showUpdate() {
  47. this.$emit('onShowUpdate', true)
  48. }
  49. }
  50. }
  51. </script>
  52. <style lang="scss" scoped>
  53. .wrapper-1 {
  54. margin: 20rpx 24rpx;
  55. padding: 0 28rpx;
  56. .titleBox {
  57. // transform: translate(-50%, -50%);
  58. margin: auto;
  59. width: 540rpx;
  60. overflow: hidden;
  61. margin-bottom: 34rpx;
  62. }
  63. .title {
  64. margin: auto;
  65. white-space:nowrap;
  66. min-width: 540rpx;
  67. width: auto;
  68. font-size: 59rpx;
  69. font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
  70. font-weight: 700;
  71. line-height: 58rpx;
  72. background: linear-gradient(357deg, #000 0%, #333 100%);
  73. -webkit-background-clip: text;
  74. -webkit-text-fill-color: transparent;
  75. animation: roll 10s infinite linear;
  76. }
  77. }
  78. @keyframes roll {
  79. 0% {
  80. transform: translateX(100%);
  81. }
  82. 100% {
  83. transform: translateX(-100%);
  84. }
  85. }
  86. </style>