修复动画效果在某些机型上显示问题
This commit is contained in:
@ -62,7 +62,7 @@
|
||||
"privacyDescription" : {
|
||||
"NSLocationWhenInUseUsageDescription" : "App需要您的同意,访问位置,用于判定装备位置是否异常",
|
||||
"NSLocationAlwaysUsageDescription" : "App需要您的同意,访问位置,用于判定装备位置是否异常",
|
||||
"NSLocationAlwaysAndWhenInUseUsageDescription" : "App需要您的同意,才能始终访问位置",
|
||||
"NSLocationAlwaysAndWhenInUseUsageDescription" : "App需要您的同意,访问位置,用于判定装备位置是否异常",
|
||||
"NSBluetoothPeripheralUsageDescription" : "App需要您的同意访问蓝牙访问权限,用于设备通信与反向控制",
|
||||
"NSBluetoothAlwaysUsageDescription" : "App需要您的同意访问蓝牙访问权限,用于设备通信与反向控制",
|
||||
"NSPhotoLibraryUsageDescription" : "App需要您的同意访问相册,用于上传头像,设备开机画面",
|
||||
|
||||
@ -539,7 +539,10 @@
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
background-color: #bbe60033;
|
||||
animation: expand 3s infinite ease-out;
|
||||
animation: expand 4s infinite ease-out;
|
||||
display: inline-block;
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
}
|
||||
|
||||
.circle:nth-child(2) {
|
||||
@ -555,14 +558,19 @@
|
||||
width: 0;
|
||||
height: 0;
|
||||
opacity: 0.8;
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
}
|
||||
|
||||
50% {
|
||||
opacity: 0.5;
|
||||
/* 增加中间过渡 */
|
||||
}
|
||||
|
||||
100% {
|
||||
width: 18.75rem;
|
||||
height: 18.75rem;
|
||||
opacity: 0;
|
||||
transform: translate(-50%, -50%);
|
||||
opacity: 0.2;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user