Skip to content

Instantly share code, notes, and snippets.

Created December 24, 2012 03:14
Show Gist options
  • Save anonymous/4367300 to your computer and use it in GitHub Desktop.
Save anonymous/4367300 to your computer and use it in GitHub Desktop.
<style>
#box1 {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
background: transparent url(img/back1.jpg);
background-repeat: no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
display: none;
}
</style>
<script type="text/javascript">
var i=0;
var boxtmp;
if(i=='0')
{
boxtmp='box1';
$("#"+boxtmp).animate( {opacity: "1", display: "in-line"}, 2000 );
i=1;
}
</script>
<div id="box1" class="box"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment