1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* components/yeyouzi-cropper/yeyouzi-cropper.wxss */
- .Container {
- opacity: 0;
- z-index: -9999;
- display: flex;
- flex-direction: column;
- width: 100%;
- height: 100%;
- position: fixed;
- left: 0;
- top: 0;
- }
- .Container-show {
- position: fixed;
- left: 0;
- top: 0;
- background: #000;
- display: flex;
- width: 100%;
- height: 100%;
- flex-direction: column;
- opacity: 1;
- z-index: 999;
- }
- .imgContainer {
- height: 100%;
- width: 100%;
- position: relative;
- }
- .settingContainer {
- background: #000;
- padding: 40rpx 0;
- z-index: 10000;
- }
- .rotateContainer {
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 0px 40rpx;
- margin-bottom: 190rpx;
- }
- .btnContainer {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 40rpx;
- }
- .imgCanvas {
- position: absolute;
- top: -9999px;
- width: 600rpx;
- height: 600rpx;
- }
|