Change animation speed

This commit is contained in:
Travis Ralston 2021-04-15 10:49:39 -06:00
parent f0d1e7c565
commit 3e24d6f8ac

View file

@ -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;
}
}