intersection-observer.wxss 523 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .scroll-view {
  2. height: 200px;
  3. background: var(--weui-BG-2);
  4. }
  5. .scroll-area {
  6. height: 1150px;
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. transition: .5s;
  11. }
  12. .notice {
  13. margin-top: 75px;
  14. }
  15. .ball {
  16. width: 100px;
  17. height: 100px;
  18. background: #1AAD19;
  19. border-radius: 50%;
  20. }
  21. .filling {
  22. height: 200px;
  23. }
  24. .message {
  25. width: 100%;
  26. display: flex;
  27. justify-content: center;
  28. }
  29. .message text {
  30. font-size: 20px;
  31. font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif;
  32. }