How to modify bootstrap carousel for mobile and tabs
问题 I am using a bootstrap slider. On desktop, it has three slides with 4 tiles each On Tabs, they have to be 4 slides with 3 tiles each On Mobile, there needs to be 12 different slides I am thinking of the most effective and optimized way of implementing this. Option 1 - Create 3 different set of sliders. Make only one visible at a time Option 2 - Detect the screen width with jquery and programmatically add extra tiles as slides, hide the extra ones. I guess this will be very complicated. Please