Skip to content

Instantly share code, notes, and snippets.

@zerolab
Created July 31, 2012 20:59
Show Gist options
  • Save zerolab/3220492 to your computer and use it in GitHub Desktop.
Save zerolab/3220492 to your computer and use it in GitHub Desktop.
Scrolling stack effect
/*
Stack effect a la http://googleventures.com
<div id="layer_base"></div>
<div id="layer_one"></div>
*/
#layer_base {
height: 100px;
width :100%;
position: static;
top: 0;
z-index: -2;
}
#layer_one {
margin-top: 100px;
position: relative;
z-index: 2;
/* box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2); */ /* fancy */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment