react-awesome-slider
react-awesome-slider copied to clipboard
React content transition slider. Awesome Slider is a 60fps, light weight, performant component that renders an animated set of production ready UI general purpose sliders with fullpage transition supp...
Hi, i just followed the steps: 1) npm install --save react-awesome-slider 2) imported the style and component 3) pasted the code given in the render Now i am getting this...
TypeError: Cannot read property 'data-src' of undefined at react-awesome-slider/dist/index.js:1:20395 My code: ``` const [projects, setProjects] = React.useState([]); React.useEffect(() => { fetch("p.json") .then((data) => data.json()) .then((data) => setProjects(data)) .catch((err) => console.error(err));...
I want to use the autoplay slider, but it is not playing automatically unless I click on the arrow. I am using the latest version. Can you help me out...
Just tried out react-awesome-slider and found out that it sadly breaks my images displaying them vertically too small. It fits my parent div containers width but fails to fill the...
custom video attribute like autoplay and loop and so on.
As in title, can I use my own 'bullets' instead of using these build in? I tried something like `ref.current.currentIndex` but ony function that works for me was `ref.current.nextSlide()`. I...
How can center the captioned text on the carousel?
Hi guys, I think `react-awesome-slider` doesn't work with IE11. I just made a site for my customer and it won't work. Also the official examples and demos won't run on...
Hi, first of all thank you for react-awesome-slider! I would like to have limited number of visible bullets in slider. It would be useful to display large amount of media...
Great project! Have you thought of adding keyboard support, so a user can flip next and previous image with the arrow keys? Maybe it's an easy way already, I just...