Skip to content

Instantly share code, notes, and snippets.

@pavsmk
Created January 17, 2014 17:03
Show Gist options
  • Save pavsmk/8477133 to your computer and use it in GitHub Desktop.
Save pavsmk/8477133 to your computer and use it in GitHub Desktop.
A Pen by Terence Devine.
<h1>Wacom Hover Effect</h1>
<a href="#" data-text="Read More" class="button-hover">Read More</a>
<a href="#" data-text="Learn More" class="button-hover">Learn More</a>
<a href="#" data-text="Read Article" class="button-hover">Read Article</a>
<a href="#" data-text="Download" class="button-hover">Download</a>
/*
Inspired by buttons on the new Wacom site
http://www.wacom.com/
This technique uses no extra markup besides an extended class name (.button-hover) & zero javascript
*/
@import "compass";
*, :before, :after{ @include box-sizing('border-box'); }
body{ padding: 1em; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background: #eee; }
h1{
font: 300 3em/1em 'Open Sans', sans-serif;
border-bottom: solid 2px #000;
margin-bottom: 1em;
padding-bottom: 1em;
}
.button,
[class*="button-"]{
position: relative;
display: inline-block;
overflow: hidden;
float: left;
margin: 0 1em 1em 0;
padding: 0 4em;
height: 3.5em;
font: 300 1em/3.5em 'Open Sans', sans-serif;
text:{
decoration: none;
shadow: 0 1px 3px rgba(black, .35);
}
letter-spacing: .08em;
color: #fff;
background: #0090C0;
border: solid 1px #fff;
border-radius: 2px;
@include transition(.35s ease all);
&:hover{
background: #007DA7;
box-shadow: 0 0 3px rgba(black, .5) inset;
}
}
.button-hover{
&:hover{ line-height: 9em; }
&:before{
content: attr(data-text);
color: #DEEFF5;
position: absolute;
top: -2.75em;
}
}

Wacom button:hover effect

The new Wacom site is gorgeous. http://www.wacom.com/

And I liked the hover effect on buttons on interior pages. http://www.wacom.com/us/en/everyday

On their live site it uses an extra div and ahref element to achieve this effect... so using mostly line-height and pseudo elements, I was able to create a similar css-hacky (CSS-Trick?) version with no extra markup besides a class name (ie: button-learn-more)

A Pen by Terence Devine on CodePen.

License.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment