index.css 828 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* #ifdef H5 */
  2. uni-page {
  3. opacity: 0;
  4. }
  5. uni-page.animation-before {
  6. /* 在页面上使用 transform 会导致页面内的 fixed 定位渲染为 absolute,需要在动画完成后移除 */
  7. transform: translateX(-20px);
  8. }
  9. /* 返回 */
  10. uni-page.animation-before2 {
  11. transform: translateX(20px);
  12. }
  13. uni-page.animation-leave {
  14. transition: all .3s ease;
  15. }
  16. uni-page.animation-enter {
  17. transition: all .3s ease;
  18. }
  19. uni-page.animation-show {
  20. opacity: 1;
  21. }
  22. uni-page.animation-afterstart {
  23. transform: translateX(20px);
  24. }
  25. /* 返回 */
  26. uni-page.animation-afterstart2 {
  27. transform: translateX(-20px);
  28. }
  29. uni-page.animation-after {
  30. /* 在页面上使用 transform 会导致页面内的 fixed 定位渲染为 absolute,需要在动画完成后移除 */
  31. transform: translateX(0);
  32. }
  33. /* #endif */