fix animated svg issue (#15471)

This commit is contained in:
Alan Ren
2021-05-13 19:15:57 -07:00
committed by GitHub
parent b1d909e829
commit 8ee8975f17
13 changed files with 26 additions and 26 deletions

View File

@@ -14,8 +14,8 @@
circle:nth-child(8) { animation-delay: 0.525s; }
@keyframes ball {
from { opacity: 1; }
to { opacity: 0.3; }
0% { opacity: 1; }
100% { opacity: 0.3; }
}
</style>
<g>

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -14,8 +14,8 @@
circle:nth-child(8) { animation-delay: 0.525s; }
@keyframes ball {
from { opacity: 1; }
to { opacity: 0.3; }
0% { opacity: 1; }
100% { opacity: 0.3; }
}
</style>
<g style="fill:white;">

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB