mescroll-down.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*下拉刷新--标语*/
  2. .mescroll-downwarp .downwarp-slogan{
  3. display: block;
  4. width: 420rpx;
  5. height: 168rpx;
  6. margin: auto;
  7. }
  8. /*下拉刷新--向下进度动画*/
  9. .mescroll-downwarp .downwarp-progress{
  10. display: inline-block;
  11. width: 40rpx;
  12. height: 40rpx;
  13. border: none;
  14. margin: auto;
  15. background-size: contain;
  16. background-repeat: no-repeat;
  17. background-position: center;
  18. background-image: url(https://www.mescroll.com/img/beibei/mescroll-progress.png);
  19. transition: all 300ms;
  20. }
  21. /*下拉刷新--进度条*/
  22. .mescroll-downwarp .downwarp-loading{
  23. display: inline-block;
  24. width: 32rpx;
  25. height: 32rpx;
  26. border-radius: 50%;
  27. border: 2rpx solid #FF8095;
  28. border-bottom-color: transparent;
  29. }
  30. /*下拉刷新--吉祥物*/
  31. .mescroll-downwarp .downwarp-mascot{
  32. position: absolute;
  33. right: 16rpx;
  34. bottom: 0;
  35. width: 100rpx;
  36. height: 100rpx;
  37. background-size: contain;
  38. background-repeat: no-repeat;
  39. animation: animMascot .6s steps(1,end) infinite;
  40. }
  41. @keyframes animMascot {
  42. 0% {background-image: url(https://www.mescroll.com/img/beibei/mescroll-bb1.png)}
  43. 25% {background-image: url(https://www.mescroll.com/img/beibei/mescroll-bb2.png)}
  44. 50% {background-image: url(https://www.mescroll.com/img/beibei/mescroll-bb3.png)}
  45. 75% {background-image: url(https://www.mescroll.com/img/beibei/mescroll-bb4.png)}
  46. 100% {background-image: url(https://www.mescroll.com/img/beibei/mescroll-bb1.png)}
  47. }