Created
February 16, 2014 14:54
-
-
Save tarikcayir/9035488 to your computer and use it in GitHub Desktop.
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
/** | |
* 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