react-animated-slider icon indicating copy to clipboard operation
react-animated-slider copied to clipboard

How to change next and prev button

Open itsgratien opened this issue 5 years ago • 2 comments

hey, how to change color next button and prev button or remove and add an svg image without using default SVG.

thanks.

itsgratien avatar May 29 '19 17:05 itsgratien

all on css. .previousButton, .nextButton { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: url('/PATH_TO/images/previousButton.svg') no-repeat center center / 16px; width: 32px; height: 32px; text-indent: -9999px; cursor: pointer; }

.previousButton:hover, .nextButton:hover { background: url('PATH_TO/images/previousButton.svg') no-repeat center center / 16px; }

.previousButton { left: 0; -webkit-transform: rotate(180deg) translateY(calc(50% + 0px)); transform: rotate(180deg) translateY(calc(50% + 0px)); }

alexedtionweb avatar Jan 14 '20 00:01 alexedtionweb

Thank you @alexedtionweb

itsgratien avatar Jan 16 '20 08:01 itsgratien