Created
August 22, 2014 12:26
-
-
Save malachi358/4d03e132a2b8e1b02cd7 to your computer and use it in GitHub Desktop.
CSS3 Slide 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
<div class="box"></div> | |
<style> | |
.box { | |
width: 200px; height: 100px; | |
background-size: 100% 200%; | |
background-image: linear-gradient(to bottom, red 50%, black 50%); | |
-webkit-transition: background-position 1s; | |
-moz-transition: background-position 1s; | |
transition: background-position 1s; | |
} | |
.box:hover { | |
background-position: 0 -100%; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment