yeyouzi-cropper.wxss 960 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* components/yeyouzi-cropper/yeyouzi-cropper.wxss */
  2. .Container {
  3. opacity: 0;
  4. z-index: -9999;
  5. display: flex;
  6. flex-direction: column;
  7. width: 100%;
  8. height: 100%;
  9. position: fixed;
  10. left: 0;
  11. top: 0;
  12. }
  13. .Container-show {
  14. position: fixed;
  15. left: 0;
  16. top: 0;
  17. background: #000;
  18. display: flex;
  19. width: 100%;
  20. height: 100%;
  21. flex-direction: column;
  22. opacity: 1;
  23. z-index: 999;
  24. }
  25. .imgContainer {
  26. height: 100%;
  27. width: 100%;
  28. position: relative;
  29. }
  30. .settingContainer {
  31. background: #000;
  32. padding: 40rpx 0;
  33. z-index: 10000;
  34. }
  35. .rotateContainer {
  36. display: flex;
  37. flex-direction: row;
  38. align-items: center;
  39. padding: 0px 40rpx;
  40. margin-bottom: 190rpx;
  41. }
  42. .btnContainer {
  43. display: flex;
  44. flex-direction: row;
  45. justify-content: space-between;
  46. padding: 40rpx;
  47. }
  48. .imgCanvas {
  49. position: absolute;
  50. top: -9999px;
  51. width: 600rpx;
  52. height: 600rpx;
  53. }