You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
957 B
71 lines
957 B
.collect {
|
|
width: 130rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
color: #909795;
|
|
font-size: 24rpx;
|
|
padding: 0 10rpx;
|
|
}
|
|
|
|
.collectImage {
|
|
position: relative;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
margin-right: 10rpx;
|
|
|
|
Image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.zoom {
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
content: '';
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
border-radius: 50%;
|
|
border: 1px solid #FF9E5F;
|
|
animation: Zooms 300ms ease forwards;
|
|
opacity: 1;
|
|
transform-origin: -100%, -100% 0;
|
|
}
|
|
|
|
.pulse {
|
|
animation: Pulse 300ms;
|
|
}
|
|
|
|
@keyframes Zooms {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
30% {
|
|
transform: scale(1.5);
|
|
left: -5%;
|
|
top: -5%;
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
transform: scale(1.5);
|
|
left: -5%;
|
|
top: -5%;
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes Pulse {
|
|
0% {
|
|
transform: scale(.2);
|
|
}
|
|
60% {
|
|
transform: scale(1.2);
|
|
}
|
|
80% {
|
|
transform: scale(.8);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|