-
-
Save szpakoli/5554612 to your computer and use it in GitHub Desktop.
CSS Button Hover Transition:
Generic starter template for a simple hover / slide effect
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
.button { | |
display: inline-block; | |
height: 60px; | |
line-height: 60px; | |
overflow: hidden; | |
position: relative; | |
text-align: center; | |
border: 1px solid #ddd; | |
padding: 0 15px; | |
} | |
.label { | |
display: block; | |
height: 100%; | |
position: relative; | |
top: 0%; | |
transition: top 0.35s; | |
width: 100%; | |
} | |
.button:hover .label { | |
top: -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
<div class="button"> | |
<span class="label">Button Label</span> | |
<span class="label">Button Label</span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment