LoadingMore.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <view
  3. class="loading-more-container"
  4. v-show="['loading', 'no-more'].includes(status)"
  5. >
  6. <div id="loading-wrapper" v-show="status === 'loading'">
  7. <div class="dot"></div>
  8. <div class="dot"></div>
  9. <div class="dot"></div>
  10. <div class="dot"></div>
  11. <div class="dot"></div>
  12. </div>
  13. <view class="no-more" v-show="status === 'no-more'">{{ text }}</view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. props: {
  19. status: {
  20. type: String,
  21. default: 'loading',
  22. validate(value) {
  23. if (!['loading', 'no-more'].includes(value)) {
  24. console.warn('loading的取值必须是loading或者no-more')
  25. }
  26. return true
  27. },
  28. },
  29. text: {
  30. type: String,
  31. default: '没有更多了',
  32. },
  33. },
  34. watch: {
  35. status(value) {
  36. // console.log(value)
  37. },
  38. },
  39. }
  40. </script>
  41. <style lang="less" scoped>
  42. .loading-more-container {
  43. width: 100%;
  44. height: 120upx;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. }
  49. .dot {
  50. width: 4px;
  51. height: 4px;
  52. border-radius: 2px;
  53. background: #ffc117;
  54. float: left;
  55. margin: 0 3px;
  56. animation: dot linear 1s infinite;
  57. -webkit-animation: dot linear 1s infinite;
  58. }
  59. .dot:nth-child(1) {
  60. animation-delay: 0s;
  61. }
  62. .dot:nth-child(2) {
  63. animation-delay: 0.15s;
  64. }
  65. .dot:nth-child(3) {
  66. animation-delay: 0.3s;
  67. }
  68. .dot:nth-child(4) {
  69. animation-delay: 0.45s;
  70. }
  71. .dot:nth-child(5) {
  72. animation-delay: 0.6s;
  73. }
  74. @keyframes dot {
  75. 0%,
  76. 60%,
  77. 100% {
  78. transform: scale(1);
  79. }
  80. 30% {
  81. transform: scale(2.5);
  82. }
  83. }
  84. @-webkit-keyframes dot {
  85. 0%,
  86. 60%,
  87. 100% {
  88. transform: scale(1);
  89. }
  90. 30% {
  91. transform: scale(2.5);
  92. }
  93. }
  94. .no-more {
  95. color: #ccc;
  96. }
  97. </style>