Skip to content

Instantly share code, notes, and snippets.

@tarikcayir
Created February 16, 2014 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarikcayir/9035488 to your computer and use it in GitHub Desktop.
Save tarikcayir/9035488 to your computer and use it in GitHub Desktop.
/**
* Controls hover fade effect!
*
* Change class name -> slider_class_name
*/
.bx-controls-direction {
opacity: 0;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.slider_class_name:hover .bx-controls-direction{
opacity: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment