mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Change animation speed
This commit is contained in:
parent
f0d1e7c565
commit
3e24d6f8ac
1 changed files with 6 additions and 3 deletions
|
@ -53,7 +53,7 @@ limitations under the License.
|
|||
font-size: $font-14px;
|
||||
|
||||
&::before {
|
||||
animation: recording-pulse 1.5s infinite;
|
||||
animation: recording-pulse 2s infinite;
|
||||
|
||||
content: '';
|
||||
background-color: $voice-record-live-circle-color;
|
||||
|
@ -84,14 +84,17 @@ limitations under the License.
|
|||
// midpoint: lamps take longer to turn off than they do to turn on, and the
|
||||
// extra frames give it a bit of a realistic punch for when the animation is
|
||||
// ramping back up to 100% opacity.
|
||||
//
|
||||
// Target animation timings: steady for 1.5s, fade out for 0.3s, fade in for 0.2s
|
||||
// (intended to be used in a loop for 2s animation speed)
|
||||
@keyframes recording-pulse {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
65% {
|
||||
35% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
65% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue