resize-sensor.css 528 B

123456789101112131415161718192021222324252627282930313233
  1. @keyframes once-show {
  2. from {
  3. top: 0;
  4. }
  5. }
  6. uni-resize-sensor,
  7. uni-resize-sensor > div {
  8. position: absolute;
  9. left: 0;
  10. top: 0;
  11. right: 0;
  12. bottom: 0;
  13. overflow: hidden;
  14. }
  15. uni-resize-sensor {
  16. display: block;
  17. z-index: -1;
  18. visibility: hidden;
  19. animation: once-show 1ms;
  20. }
  21. uni-resize-sensor > div > div {
  22. position: absolute;
  23. left: 0;
  24. top: 0;
  25. }
  26. uni-resize-sensor > div:first-child > div {
  27. width: 100000px;
  28. height: 100000px;
  29. }
  30. uni-resize-sensor > div:last-child > div {
  31. width: 200%;
  32. height: 200%;
  33. }