微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 години
12345678910111213141516171819202122232425262728293031323334353637
  1. .q-pp {
  2. position: fixed;
  3. width: 100%;
  4. box-sizing: border-box;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. background: #f7f7f7;
  9. transform: translate3d(0, 100%, 0);
  10. transform-origin: center;
  11. transition: all 0.2s ease-in-out;
  12. z-index: 900;
  13. visibility: hidden;
  14. }
  15. .q-pp-show {
  16. transform: translate3d(0, 0, 0);
  17. visibility: visible;
  18. }
  19. .q-pp-mask {
  20. position: fixed;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. background: rgba(0, 0, 0, 0.7);
  26. z-index: 900;
  27. transition: all 0.2s ease-in-out;
  28. opacity: 0;
  29. visibility: hidden;
  30. }
  31. .q-pp-mask-show {
  32. opacity: 1;
  33. visibility: visible;
  34. }