docs: remove prefixed animation related CSS properties (#40084)

Angular has stopped to support browser that requires these CSS properties.
All supported browsers support standard CSS properties:
* @keyframes rule
* animation

PR Close #40084
This commit is contained in:
Alexey Elin 2020-12-11 17:56:11 +03:00 committed by Alex Rickabaugh
parent 1e05109f17
commit 4f4f318d28
1 changed files with 1 additions and 5 deletions

View File

@ -7,13 +7,9 @@
height: .3em; height: .3em;
width: 6em; width: 6em;
margin:-60px 0 0 -60px; margin:-60px 0 0 -60px;
-webkit-animation:spin 4s linear infinite;
-moz-animation:spin 4s linear infinite;
animation:spin 4s linear infinite; animation:spin 4s linear infinite;
} }
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } } @keyframes spin { 100% { transform:rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
.spinner-hidden { .spinner-hidden {
display:none; display:none;