Created
October 21, 2013 18:26
-
-
Save dziudek/7088542 to your computer and use it in GitHub Desktop.
Curvy background
This file contains hidden or 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
/** | |
* Curvy background | |
*/ | |
#main { | |
transform: skewY(10deg); | |
overflow: hidden | |
} | |
#main:hover #bg { | |
background-position: 0 -100px; | |
} | |
#bg { | |
background: url('http://placekitten.com/800/600/') no-repeat; | |
background-size: cover; | |
height: 600px; | |
margin: -100px 0; | |
transform: skewY(-10deg); | |
transition: all .3s ease-out; | |
width: 100%; | |
} |
This file contains hidden or 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
<!-- content to be placed inside <body>…</body> --> | |
<div id="main"><div><div id="bg"></div></div></div> |
This file contains hidden or 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
// alert('Hello world!'); |
This file contains hidden or 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":"split-vertical","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