Wiredcraft / fullpm-chrome

Google Chrome extension for FullPM.
https://wiredcraft.com/fullpm
2 stars 2 forks source link

Loading transitions #1

Open hunvreus opened 8 years ago

hunvreus commented 8 years ago

When load content rom fullpm.com (may this be the login page or the board), you should display a loading animation. You can look at how we're mimicking the loading animation from GitHub;

.loader {
  background: rgba(255, 255, 255, 0.8) url(https://assets-cdn.github.com/images/spinners/octocat-spinner-64.gif) no-repeat center center;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
Jamesford commented 8 years ago

Loading spinner covers the iframe until 1s after the iframe.onload fires. The delay prevents a flash of no-content as it seems to take a moment for the fullpm webpage spinner to appear.