| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- .content {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- width: 100%;
- height: 100%;
- background: #fff;
- font-family: "MicrosoftYaHei";
-
- .cameraField {
- position: relative;
- width: 750rpx;
- height: 1000rpx;
- background: #6EAFF0;
- z-index: 2;
- overflow: hidden;
- canvas{
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border-radius: 5rpx;
- z-index: 3;
- }
- .hint {
- position: absolute;
- top: 45rpx;
- left: 223rpx;
- width: 301rpx;
- height: 72rpx;
- color: #fff;
- font-size: 32rpx;
- background: rgba($color: #000000, $alpha: .33);
- border-radius: 36rpx;
- text-align: center;
- line-height: 72rpx;
- box-sizing: border-box;
- z-index: 4;
- image {
- max-width: 30rpx;
- max-height: 30rpx;
- vertical-align: middle;
- margin-right: 15rpx;
- margin-bottom: 4rpx;
- }
- }
- .uploading {
- display: flex;
- position: absolute;
- top: 251rpx;
- left: 244rpx;
- flex-direction: column;
- justify-content: space-around;
- width: 263rpx;
- height: 296rpx;
- font-size: 24rpx;
- border-radius: 10rpx;
- background: rgba($color: #000000, $alpha: .33);
- box-sizing: border-box;
- z-index: 4;
- image {
- max-width: 60rpx;
- max-height: 60rpx;
- text-align: center;
- margin-left: 102rpx;
- margin-top: 40rpx;
- animation: myMove 2s linear infinite normal;
- @keyframes myMove {
- 0% {
- transform: rotate(0deg);
- }
- 25% {
- transform: rotate(90deg);
- }
- 50% {
- transform: rotate(180deg);
- }
- 75% {
- transform: rotate(270deg);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- }
- text {
- margin-bottom: 30rpx;
- color: #fff;
- text-align: center;
- }
- }
- .head {
- position: absolute;
- bottom: 16%;
- left: 50%;
- transform: translateX(-376rpx);
- width: 750rpx;
- height: 620rpx;
-
- z-index: 5;
- }
- }
- .controlField {
- width: 750rpx;
- // height: 447rpx;
- color: #fff;
- .control1 {
- display: flex;
- justify-content: space-between;
- width: 550rpx;
- height: 150rpx;
- margin: 0 auto;
- // margin-top: 130rpx;
- margin-top: 40rpx;
- .light,
- .change {
- max-height: 70rpx;
- max-width: 70rpx;
- margin-top: 40rpx;
- text-align: center;
- }
- .take {
- max-height: 150rpx;
- max-width: 150rpx;
- }
- }
- .control2 {
- display: flex;
- justify-content: space-between;
- width: 600rpx;
- height: 150rpx;
- margin: 0 auto;
- // margin-top: 130rpx;
- margin-top: 70rpx;
- view {
- width: 170rpx;
- height: 80rpx;
- background: #6EAFF0;
- font-size: 32rpx;
- text-align: center;
- line-height: 80rpx;
- border-radius: 10rpx;
- }
- }
- }
- }
|