Skip to content

Instantly share code, notes, and snippets.

@shrekuu
Last active May 12, 2017 02:55
Show Gist options
  • Save shrekuu/d42d39824772f59dcdebeb9f00e7bf30 to your computer and use it in GitHub Desktop.
Save shrekuu/d42d39824772f59dcdebeb9f00e7bf30 to your computer and use it in GitHub Desktop.
Fix FoUC. Show the 'hidden' elements at next tick.

Put these code in your app.

<style>
.fix-fouc {
  opacity: 0;
  /* use this one if you need more compatibility */
  /* display: none;  */
}
</style>

<script>
$(function() {
  setTimeout(function() {
    $('.fix-fouc').removeClass('fix-fouc');
  },0);
);
</script>

Then add class fix-fouc on flashing elements.

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