Skip to content

Instantly share code, notes, and snippets.

@tavriaforever
Forked from tyv/dabblet.css
Created May 10, 2012 19:10
Show Gist options
  • Save tavriaforever/2655183 to your computer and use it in GitHub Desktop.
Save tavriaforever/2655183 to your computer and use it in GitHub Desktop.
внутри .frame позиционировать
/*
внутри .frame позиционировать
блоки на разных слоях
(по имени класса понятно каких)
по клику на .frame изменять с
анимацией.
у каждого блока позицию.
по клику вне .frame
возвращать назад
http://clck.ru/d/GiIRzL3l145IH
*/
.frame
{
position: relative;
widht: 500px;
height:350px;
background: #ccc;
}
.frame div
{
position: absolute;
}
.front
{
z-index: 3;
width: 200px;
height: 150px;
border-radius: 30px;
background: #fff;
opacity: 0.5;
top: 100px;
left: 40px;
}
.center
{
z-index: 2;
width: 100px;
height: 50px;
border-radius: 30px;
background: #fff;
opacity: 0.5;
top: 100px;
left: 40px;
box-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.back
{
z-index: 1;
}
<div class="frame" tabindex="1">
<div class="front"></div>
<div class="center"></div>
<div class="back"></div>
</div>
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment