I have made Jquery div sliding out inside a Slideshow. I have used this documentation to build it up.
If you look up here my case you can find the Jquery div sliding out inside the slideshow, if you click on the arrow, the dive comes out but i can not give the function that once the slide come out, it can get closed clicking on the arrow back.
Probably there was an easier and better way to do that, this is the code i am using for that.
How can i make my arrow-back working to close the div sliding out? If you think that there is a better way to achieve that, let me know.
Hope the explanation is clear
Thanks for your help
<script>
$(document).ready(function()
{
$(".click").click(function ()
{
$(".slideout").toggle("slide", {}, 100);
$('.click').hide();
$('.back').toggle();
});
});
</script>
My CSS Code:
.slideout { display: none; margin: 0px; width: 300px; height: 450px; background: url("img/rejilla.png") repeat scroll 0 0 transparent; position: absolute; z-index: 101; top:15px;
-webkit-border-top-left-radius: 16px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-topleft: 16px; -moz-border-radius-bottomleft: 4px; border-top-left-radius: 16px; border-bottom-left-radius: 4px; opacity: 0.5; }
.click { z-index: 102; left:-15px; position: absolute; top: 10px; z-index:102; }
.back {float: right; position: absolute; z-index: 102; left: 285px; top: 15px; display: none;}
HTML Code
<div id="slideshow">
<div id="example">
<img src="img/arrow.png" class="click" alt="arrow" width="50" height="100" /><div class="slideout">bla bla bla</div><img src="img/arrow-prev.png" class="back" alt="arrow" width="50" height="100" />
<div id="slides">
<div class="slides_container">
<a href="" title="Slide 1" target="_blank"><img class="slide" src="img/slide-1.jpg" alt="slide-1" width="1020" height="450" /></a>
<a href="" title="Slide 2" target="_blank"><img class="slide" src="img/slide-2.jpg" alt="slide-2" width="1020" height="450" /></a>
<a href="" title="Slide 3" target="_blank"><img class="slide" src="img/slide-3.jpg" alt="slide-3" width="1020" height="450" /></a>
</div>
</div>
</div>
</div>
</div>