Currently, I am using the SliderPro Slider to create a slider that resembles the examples shown on this demo page. The HTML code for this setup looks like the following:
<div id="example2" class="slider-pro">
<div class="sp-slides">
<div class="sp-slide">
<a href="http://bqworks.com/slider-pro/images/image1_large.jpg">
<img class="sp-image" src="../src/css/images/blank.gif" data-src="http://bqworks.com/slider-pro/images/image1_medium.jpg" data-retina="http://bqworks.com/slider-pro/images/image1_large.jpg" />
</a>
<p class="sp-caption">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
(More slides follow with similar structure)
</div>
</div>
In addition, the jQuery initialization code used is as follows:
$( document ).ready(function( $ ) {
$( '#example2' ).sliderPro({
width: '20%',
height: 500,
aspectRatio: 1.5,
visibleSize: '100%',
forceSize: 'fullWidth'
});
Recently, I have been asked to display images from an Instagram account in the slider instead of the current ones. Since Instagram only provides access to their API through authentication, the challenge now lies in integrating Instagram's images into my existing slider. How should I go about incorporating Instagram content into my SliderPro Slider?