|
@@ -115,6 +115,29 @@ page {
|
|
|
|
|
|
}
|
|
|
|
|
|
+/* HTML: <div class="loader"></div> */
|
|
|
+.loader {
|
|
|
+ position: absolute;
|
|
|
+ top: 50%;
|
|
|
+ left: 50%;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ margin-top: -50rpx;
|
|
|
+ margin-left: -50rpx;
|
|
|
+ z-index: 9;
|
|
|
+ width: 100rpx;
|
|
|
+ aspect-ratio: 1;
|
|
|
+ border-radius: 50%;
|
|
|
+ background:
|
|
|
+ radial-gradient(farthest-side,#E8E8E8 94%,#0000) top/8px 8px no-repeat,
|
|
|
+ conic-gradient(#0000 30%,#E8E8E8);
|
|
|
+ -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
|
|
|
+ animation: tempLoading 1s infinite linear;
|
|
|
+}
|
|
|
+@keyframes tempLoading{
|
|
|
+ 100%{transform: rotate(1turn)}
|
|
|
+}
|
|
|
+
|
|
|
.qrcode-title {
|
|
|
padding: 40rpx 24rpx;
|
|
|
font-weight: 600;
|