I am looking to design an image slider with a border around the images and transitioning effects similar to the provided screenshot.
Here is my HTML code:
<div id="slideshow"><span class="control"
id="leftControl" style="display: none;">Move left</span>
<span class="control" id="leftControl"></span>
<div id="slidesContainer" style="overflow: hidden;">
<div id="slideInner" style="width: 3060px;">
<div class="slide" style="float: left; width: 1020px;">
<img src="/images/daf.png">
</div>
<div class="slide" style="float: left; width: 1020px;">
<img src="/images/daf.png">
</div>
<div class="slide" style="float: left; width: 1020px;">
3
</div>
</div>
</div>
<span class="control" id="rightControl"></span>
<div class="shadow_and_circles">
<div class="sl1">
</div>
<div class="sl2">
</div>
<div class="sl1">
</div>
</div>
<span class="control" id="rightControl">Move right</span>
</div>
You can view the CSS on my fiddle. After implementing these styles, my current result resembles this
What did I do wrong? I have adjusted the z-index, but what other steps should I take?
Update
I have now created a new fiddle