1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00

fix animation

This commit is contained in:
Lu Wang 2013-11-18 21:41:53 +08:00
parent af67d7a5dd
commit a793190afc

View File

@ -74,8 +74,13 @@
}
.loading-indicator.active {
display: block;
-webkit-animation: swing 1.5s ease-in-out 0s infinite alternate none;
animation: swing 1.5s ease-in-out 0s infinite alternate none;
/*
* use 0.01s instead of 0s,
* since YUI Compressor will change 0s to 0,
* which is not recognized by Firefox
*/
-webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
}
}
/* Fancy CSS END */