微信小程序
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

38 linhas
604 B

  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. }