Hello guys,
I created a splashscreen for my tiddlywiki with the following style (I used
Autoprefix for the webkit https://autoprefixer.github.io)
loader {
-webkit-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
I noticed that the animation doesn't work only on iOS devices (every
browser), but it loads just fine on Android.
I think there is a problem with the webkit not loading properly, does
anybody why this happens or how to fix this?
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywikidev/f717119c-72d8-4286-8575-2c63562bf4fco%40googlegroups.com.