-
-
Save tavriaforever/2655183 to your computer and use it in GitHub Desktop.
внутри .frame позиционировать
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
внутри .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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="frame" tabindex="1"> | |
<div class="front"></div> | |
<div class="center"></div> | |
<div class="back"></div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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