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.

105 lines
1.9 KiB

1 year ago
  1. /* pagesA/selectFace/selectFace.wxss */
  2. page{
  3. background: #000;
  4. height: 100%;
  5. }
  6. .d-position-fixed{
  7. position: fixed;
  8. width: 100%;
  9. box-shadow: 10px 10px 10px #4e4e4e;
  10. bottom: 0;
  11. left: 0;
  12. }
  13. .operate{
  14. box-sizing: border-box;
  15. z-index: 99;
  16. }
  17. .operate button{
  18. width: 100%;
  19. }
  20. .center-box{
  21. left: 50%;
  22. top: 50%;
  23. transform: translateX(-50%) translateY(-50%);
  24. z-index: 98
  25. }
  26. .box-frame{
  27. background:
  28. linear-gradient(to top, #26aad1, #26aad1) left top no-repeat,
  29. linear-gradient(to right, #26aad1, #26aad1) left top no-repeat,
  30. linear-gradient(to left, #26aad1, #26aad1) right top no-repeat,
  31. linear-gradient(to bottom, #26aad1, #26aad1) right top no-repeat,
  32. linear-gradient(to left, #26aad1, #26aad1) left bottom no-repeat,
  33. linear-gradient(to bottom, #26aad1, #26aad1) left bottom no-repeat,
  34. linear-gradient(to top, #26aad1, #26aad1) right bottom no-repeat,
  35. linear-gradient(to left, #26aad1, #26aad1) right bottom no-repeat;
  36. background-size: 2px 10px, 10px 2px, 2px 10px, 10px 2px;
  37. /* height: 200px;
  38. width: 150px; */
  39. position: absolute;
  40. left: 50%;
  41. top: 50%;
  42. transform: translate(-50%, -50%);
  43. }
  44. movable-area {
  45. height: 100%;
  46. width: 100%;
  47. background-color: black;
  48. overflow: hidden;
  49. }
  50. movable-view {
  51. position: absolute;
  52. }
  53. image{
  54. width: 100%;
  55. height: 100%;
  56. }
  57. canvas{
  58. width: 100%;
  59. height: 100%;
  60. position: fixed;
  61. left: 0;
  62. bottom: 120rpx;
  63. }
  64. .bottom{
  65. width: 100%;
  66. box-sizing: border-box;
  67. background: black;
  68. opacity: 0.5;
  69. height: 120rpx;
  70. position:fixed;
  71. bottom: 0;
  72. left: 0;
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-between;
  76. }
  77. .button::after{
  78. border: 0
  79. }
  80. .button{
  81. height: 100rpx;
  82. width: 25%;
  83. line-height: 100rpx;
  84. font-size: 32rpx;
  85. color: white;
  86. text-align: center;
  87. opacity: 1;
  88. }
  89. .button:first-child{
  90. text-align: left;
  91. margin-left: 5%;
  92. }
  93. .button:last-child{
  94. text-align: right;
  95. margin-right: 5%;
  96. }