jquery.fractionslider icon indicating copy to clipboard operation
jquery.fractionslider copied to clipboard

Added Control Labels

Open bitstarr opened this issue 10 years ago • 0 comments

Using this labelling option would make it easier to work with icon fonts and ditch images.

Usage:

  …
  'controlsNextLabel' : '→',
  'controlsPrevLabel' : '←',
  …
.fraction-slider .prev,
.fraction-slider .next {
  font-family: icon-font;
  opacity: .5;
}
.fraction-slider .prev:hover,
.fraction-slider .next:hover {
  opacity: 1;
}

Using a code like this provides a fallback if the icon font is broken or something.

bitstarr avatar Mar 31 '14 16:03 bitstarr