uni-popup.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .uni-popup.data-v-7da806a4 {
  12. position: fixed;
  13. top: 0;
  14. bottom: 0;
  15. left: 0;
  16. right: 0;
  17. z-index: 99;
  18. }
  19. .uni-popup__mask.data-v-7da806a4 {
  20. position: absolute;
  21. top: 0;
  22. bottom: 0;
  23. left: 0;
  24. right: 0;
  25. background-color: rgba(0, 0, 0, 0.4);
  26. opacity: 0;
  27. }
  28. .mask-ani.data-v-7da806a4 {
  29. -webkit-transition-property: opacity;
  30. transition-property: opacity;
  31. -webkit-transition-duration: 0.2s;
  32. transition-duration: 0.2s;
  33. }
  34. .uni-top-mask.data-v-7da806a4 {
  35. opacity: 1;
  36. }
  37. .uni-bottom-mask.data-v-7da806a4 {
  38. opacity: 1;
  39. }
  40. .uni-center-mask.data-v-7da806a4 {
  41. opacity: 1;
  42. }
  43. .uni-popup__wrapper.data-v-7da806a4 {
  44. display: block;
  45. position: absolute;
  46. }
  47. .top.data-v-7da806a4 {
  48. top: 0;
  49. left: 0;
  50. right: 0;
  51. -webkit-transform: translateY(-500px);
  52. transform: translateY(-500px);
  53. }
  54. .bottom.data-v-7da806a4 {
  55. bottom: 0;
  56. left: 0;
  57. right: 0;
  58. -webkit-transform: translateY(500px);
  59. transform: translateY(500px);
  60. }
  61. .center.data-v-7da806a4 {
  62. display: -webkit-box;
  63. display: -webkit-flex;
  64. display: flex;
  65. -webkit-box-orient: vertical;
  66. -webkit-box-direction: normal;
  67. -webkit-flex-direction: column;
  68. flex-direction: column;
  69. bottom: 0;
  70. left: 0;
  71. right: 0;
  72. top: 0;
  73. -webkit-box-pack: center;
  74. -webkit-justify-content: center;
  75. justify-content: center;
  76. -webkit-box-align: center;
  77. -webkit-align-items: center;
  78. align-items: center;
  79. -webkit-transform: scale(1.2);
  80. transform: scale(1.2);
  81. opacity: 0;
  82. }
  83. .uni-popup__wrapper-box.data-v-7da806a4 {
  84. display: block;
  85. position: relative;
  86. }
  87. .content-ani.data-v-7da806a4 {
  88. -webkit-transition-property: opacity, -webkit-transform;
  89. transition-property: opacity, -webkit-transform;
  90. transition-property: transform, opacity;
  91. transition-property: transform, opacity, -webkit-transform;
  92. -webkit-transition-duration: 0.2s;
  93. transition-duration: 0.2s;
  94. }
  95. .uni-top-content.data-v-7da806a4 {
  96. -webkit-transform: translateY(0);
  97. transform: translateY(0);
  98. }
  99. .uni-bottom-content.data-v-7da806a4 {
  100. -webkit-transform: translateY(0);
  101. transform: translateY(0);
  102. }
  103. .uni-center-content.data-v-7da806a4 {
  104. -webkit-transform: scale(1);
  105. transform: scale(1);
  106. opacity: 1;
  107. }