Created
March 22, 2015 07:09
-
-
Save sanryuu/51196460040211d35f00 to your computer and use it in GitHub Desktop.
クリックすると画面が切り替わるCSSのサンプル
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
<html> | |
<head> | |
<link rel="stylesheet" href="sample.css"> | |
</head> | |
<div class="background"> | |
<div class="clicked"> | |
</div> | |
</div> | |
</body> | |
</html> |
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
.background{ | |
background-color:blue; | |
position: absolute; | |
top: 00px; | |
left: 00px; | |
height: 300px; | |
width: 300px; | |
} | |
.clicked{ | |
background-color:red; | |
position: absolute; | |
top: 0px; | |
left: 300px; | |
height: 300px; | |
width: 300px; | |
} | |
.clicked:hover{ | |
top: 0; | |
left: 0; | |
} | |
.background:active .clicked{ | |
top: 0; | |
left: 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment