TASK: #116148 点击按键闪动特效
This commit is contained in:
parent
5a0962e712
commit
e75e350ffe
|
@ -73,13 +73,14 @@ export const sharedStyles: CSSResult = css`
|
|||
content: '';
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
left: 1px;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 50%;
|
||||
background-color: #ffffff;
|
||||
opacity: 0.35;
|
||||
opacity: 0;
|
||||
animation: flash 0.3s;
|
||||
}
|
||||
|
||||
.block::before {
|
||||
|
@ -181,4 +182,16 @@ export const sharedStyles: CSSResult = css`
|
|||
transform: translate(-50%, -300%);
|
||||
}
|
||||
}
|
||||
|
||||
/* 点击按键闪动特效 */
|
||||
@keyframes flash {
|
||||
0% {
|
||||
opacity: 0.55;
|
||||
transform: scale(0.9);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: scale(1.3);
|
||||
}
|
||||
}
|
||||
`
|
||||
|
|
Loading…
Reference in New Issue