Skip to content

Instantly share code, notes, and snippets.

@leohxj
Created September 1, 2013 13:01
Show Gist options
  • Select an option

  • Save leohxj/6404329 to your computer and use it in GitHub Desktop.

Select an option

Save leohxj/6404329 to your computer and use it in GitHub Desktop.
文档加载完毕再执行transition
<body class="preload">
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
$("window").load(function() {
  $("body").removeClass("preload");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment