Skip to content

Instantly share code, notes, and snippets.

@TimWolla
Created February 4, 2014 01:59
Show Gist options
  • Select an option

  • Save TimWolla/8796194 to your computer and use it in GitHub Desktop.

Select an option

Save TimWolla/8796194 to your computer and use it in GitHub Desktop.
Stackoverflow question 21541494 - Coffeescript add button on hover
/**
* Stackoverflow question 21541494 - Coffeescript add button on hover
*/
.prf_cvr_edt {
opacity: 0;
transition: opacity .5s linear;
}
.prf_cover:hover + .prf_cvr_edt {
opacity: 1;
}
<header class="shop-banner">
<img src="http://i.imgur.com/5jSh4fI.jpg" style="height: 250px" class="prf_cover">
<a class="btn btn-custom prf_cvr_edt">Edit Cover</a>
</header>
//alert('Hello world!');
{"view":"split","fontsize":"120","seethrough":"1","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment