I have a carousel that navigates through the right / left arrows. In mobile, the user must be able to "drag" the carousel, without using the arrows to navigate.
I'm using the bootstrap's own carousel. Do I need a framework to get the desired result?
<div class="carousel slide" id="myCarousel">
<div class="carousel-inner">
<div class="item active">
<p>Lorem Ipsum é simplesmente uma simulação de texto da indústria tipográfica e de impressos, e vem sendo utilizado desde o século XVI, quando um impressor </p>
</div>
</div>
<a class="carousel-control left" href="#myCarousel" data-slide="prev"><<</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">>></a>
</div>