Skip to content

Instantly share code, notes, and snippets.

@malachi358
Created August 22, 2014 12:26
Show Gist options
  • Save malachi358/4d03e132a2b8e1b02cd7 to your computer and use it in GitHub Desktop.
Save malachi358/4d03e132a2b8e1b02cd7 to your computer and use it in GitHub Desktop.
CSS3 Slide Background
<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