1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* pages/upload/index.wxss */
- page{
- -webkit-user-select: none;
- user-select: none;
- width: 100%;
- height: 100%;
- background-color: #f8f8f8;
- font-family: Arial, Helvetica, sans-serif;
- overflow-x: hidden;
- }
- .flex{
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .cropper-wrapper{
- position: relative;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- justify-content: center;
- height: 100%;
- background-color: #e5e5e5;
- }
- .cropper-buttons{
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 50px;
- padding: 0 20rpx;
- box-sizing: border-box;
- line-height: 50px;
- }
- .cropper-buttons .upload, .cropper-buttons .getCropperImage{
- text-align: center;
- }
- .cropper{
- position: absolute;
- top: 0;
- left: 0;
- }
- .cropper-buttons{
- background-color: rgba(0, 0, 0, 0.95);
- }
- .btn{
- height: 30px;
- line-height: 30px;
- padding: 0 24rpx;
- border-radius: 2px;
- color: #ffffff;
- }
|