Skip to content

Instantly share code, notes, and snippets.

@bbredewold
Created October 23, 2014 13:17
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 bbredewold/6808d7edb2312eecaacf to your computer and use it in GitHub Desktop.
Save bbredewold/6808d7edb2312eecaacf to your computer and use it in GitHub Desktop.
Fixed wallpapers in IOS
.site_wall_sharp{
position: fixed;
top:0;
right: 0;
bottom: 0;
left: 0;
background: url('../img/ma_back.jpg') no-repeat center center scroll; // OPLOSSING VOOR IOS :)
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.site_wall_blur {
position: fixed;
top:0;
right: 0;
bottom: 0;
left: 0;
background: url('../img/ma_back_blur.jpg') no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
opacity: 0;
-webkit-transform: translate3d(0,0,0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment