2
Well, using jquery and js, I wanted to make a slide where my php would pull a lot of Ivs, and the limit will be 8 Ivs, for example, if you click the next button, it will move on to other Ivs that do not fit on the page, and if you click the Prev button, it will come back. How can I do that?
HTML:
<div class="noticias">
<div class="box">Título</div>
</div>
<button id="next">Next</button>
<button id="prev">Prev</button>
this effect is called Carousel or slideshow this example of Bootstrap is very easy to adapt
– Pedro Sanção
I’ve already got a base, thank you very much.
– Paulo Cavalcante
http://www.w3schools.com/bootstrap/bootstrap_carousel.asp teaches how to make a Carousel in detail. In this case, bootstrap is used.
– badso