Skip to content

Instantly share code, notes, and snippets.

@mauryaratan
Created March 25, 2014 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauryaratan/9760918 to your computer and use it in GitHub Desktop.
Save mauryaratan/9760918 to your computer and use it in GitHub Desktop.
Fix for Google web fonts rendering bug appeared in Chrome v33.
body {
-webkit-animation-duration: 0.1s;
-webkit-animation-name: fontfix;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 0.1s;
}
@-webkit-keyframes fontfix {
from { opacity: 1; }
to { opacity: 1; }
}
@A-Zak
Copy link

A-Zak commented Jun 18, 2014

I just tried this, and it didn't work... /:
Is there anything else I can do?

@A-Zak
Copy link

A-Zak commented Jun 18, 2014

Just checked, I'm using v35.... Do you know anything that can fix it on v35?

@mauryaratan
Copy link
Author

Hey @A-Zak, missed your question. This problem doesn’t really exists on v35, there might be something else going on your site. I could take a look for you, if you could share you site URL, if so—please open an issues on https://github.com/mauryaratan/feedback

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment