z-paging-main.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /* z-paging
  2. github地址:https://github.com/SmileZXLee/uni-z-paging
  3. dcloud地址:https://ext.dcloud.net.cn/plugin?id=3935
  4. 反馈QQ群:790460711
  5. */
  6. .z-paging-content {
  7. position: relative;
  8. /* #ifndef APP-NVUE */
  9. display: flex;
  10. width: 100%;
  11. height: 100%;
  12. /* #endif */
  13. flex-direction: column;
  14. }
  15. .z-paging-content-fixed {
  16. position: fixed;
  17. /* #ifndef APP-NVUE */
  18. height: auto;
  19. width: auto;
  20. /* #endif */
  21. top: 0;
  22. left: 0;
  23. bottom: 0;
  24. right: 0;
  25. }
  26. .zp-page-scroll-top,
  27. .zp-page-scroll-bottom {
  28. /* #ifndef APP-NVUE */
  29. width: auto;
  30. /* #endif */
  31. position: fixed;
  32. left: 0;
  33. right: 0;
  34. z-index: 999;
  35. }
  36. .zp-scroll-view-super {
  37. flex: 1;
  38. position: relative;
  39. }
  40. .zp-scroll-view {
  41. height: 100%;
  42. width: 100%;
  43. }
  44. .zp-scroll-view-absolute {
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. }
  49. .zp-paging-touch-view {
  50. width: 100%;
  51. height: 100%;
  52. position: relative;
  53. }
  54. .zp-fixed-bac-view {
  55. position: absolute;
  56. width: 100%;
  57. top: 0;
  58. left: 0;
  59. height: 200px;
  60. }
  61. .zp-paging-main {
  62. height: 100%;
  63. /* #ifndef APP-NVUE */
  64. display: flex;
  65. /* #endif */
  66. flex-direction: column;
  67. }
  68. .zp-paging-container {
  69. flex: 1;
  70. position: relative;
  71. }
  72. .zp-chat-record-loading-container {
  73. /* #ifndef APP-NVUE */
  74. display: flex;
  75. width: 100%;
  76. /* #endif */
  77. /* #ifdef APP-NVUE */
  78. width: 750rpx;
  79. /* #endif */
  80. align-items: center;
  81. justify-content: center;
  82. height: 60rpx;
  83. font-size: 26rpx;
  84. }
  85. .zp-chat-record-loading-custom-image {
  86. width: 35rpx;
  87. height: 35rpx;
  88. /* #ifndef APP-NVUE */
  89. animation: loading-flower 1s linear infinite;
  90. /* #endif */
  91. }
  92. .zp-custom-refresher-container {
  93. /* #ifndef APP-NVUE */
  94. display: flex;
  95. /* #endif */
  96. flex-direction: row;
  97. justify-content: center;
  98. align-items: center;
  99. }
  100. .zp-back-to-top {
  101. width: 76rpx;
  102. height: 76rpx;
  103. z-index: 999;
  104. position: absolute;
  105. bottom: 0rpx;
  106. right: 25rpx;
  107. transition-duration: .3s;
  108. transition-property: opacity;
  109. }
  110. .zp-back-to-top-show {
  111. opacity: 1;
  112. }
  113. .zp-back-to-top-hide {
  114. opacity: 0;
  115. }
  116. .zp-back-to-top-img {
  117. /* #ifndef APP-NVUE */
  118. width: 100%;
  119. height: 100%;
  120. /* #endif */
  121. /* #ifdef APP-NVUE */
  122. flex: 1;
  123. /* #endif */
  124. z-index: 999;
  125. }
  126. .zp-empty-view{
  127. /* #ifdef APP-NVUE */
  128. height: 100%;
  129. /* #endif */
  130. flex: 1;
  131. }
  132. .zp-n-refresh-container {
  133. /* #ifndef APP-NVUE */
  134. display: flex;
  135. /* #endif */
  136. justify-content: center;
  137. width: 750rpx;
  138. }