z-paging-static.css 665 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. 公用的静态css资源 */
  6. .zp-loading-more-line-loading-image {
  7. margin-right: 8rpx;
  8. width: 28rpx;
  9. height: 28rpx;
  10. /* #ifndef APP-NVUE */
  11. animation: loading-flower 1s steps(12) infinite;
  12. /* #endif */
  13. color: #666666;
  14. }
  15. .zp-loading-image-ios{
  16. width: 20px;
  17. height: 20px;
  18. }
  19. .zp-loading-image-android{
  20. width: 32rpx;
  21. height: 32rpx;
  22. }
  23. @keyframes loading-flower {
  24. 0% {
  25. -webkit-transform: rotate(0deg);
  26. transform: rotate(0deg);
  27. }
  28. to {
  29. -webkit-transform: rotate(1turn);
  30. transform: rotate(1turn);
  31. }
  32. }