I am trying to enhance this image slider in HTML and CSS to achieve the following objectives: 1. Eliminate the scroll bar 2. Implement swipe functionality with mouse flick (should work on mobile devices as well) 3. Make the images clickable
.slider{
overflow: auto;
white-space:nowrap;
}
<div class="slider">
<img src="http://letsbefoodie.com/imagesforslider/manchow_recipe_slider.png" alt="Manchow Soup Recipe" />
<img src="http://letsbefoodie.com/imagesforslider/carrot_halwa_slider.png" alt="Microwave Carrot Halwa Recipe" />
<img src="http://letsbefoodie.com/imagesforslider/manchow_recipe_slider.png" alt="Manchow Soup Recipe" />
<img src="http://letsbefoodie.com/imagesforslider/carrot_halwa_slider.png" alt="Microwave Carrot Halwa Recipe" />
<img src="http://letsbefoodie.com/imagesforslider/manchow_recipe_slider.png" alt="Manchow Soup Recipe" />
<img src="http://letsbefoodie.com/imagesforslider/carrot_halwa_slider.png" alt="Microwave Carrot Halwa Recipe" />
<img src="http://letsbefoodie.com/imagesforslider/manchow_recipe_slider.png" alt="Manchow Soup Recipe" />
<img src="http://letsbefoodie.com/imagesforslider/carrot_halwa_slider.png" alt="Microwave Carrot Halwa Recipe" />
</div>