Next And Previous In Jquery Array
So I have a jQuery array with image URLs in it: var images = ['link1','link2','etc','etc']; I then have this code for when the thumbnail of an image is clicked: $('.thumbnail').cl
Solution 1:
See output below, you can use this code
- First set index=0 and make an default image
- on next check if not 3, increase 1 to index
- if 3 then set back to zero
- reverse this logic for previous
var link = ["http://img4.wikia.nocookie.net/__cb20111201004451/internetphoto/images/8/81/Google_Image_Result_for_http-wallpaperstock.net-small-cute-kitty_wallpapers_24216_1920x1200.jpg",
"https://lh6.ggpht.com/RIt3-kTajLWZIxunxQz9uEQp7cQ6htqFYZTcwbJXwsyKKp35BCLxKnvzswAiDfS5zQ=h310",
"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ1NIp3cJPgEDVBQJ_jwXO27Xa-9fJqdQXuYEYa2S3NgiM8OZSf",
"https://lh5.ggpht.com/T2acx2jKADSe1iwM6GbinPlY_1DGqF4qQAI37-ua6hwQ-DrVYDXmqRPz2HuzwrmFyQ=h310"];
index=0;
$('.large_view').prepend('<img src="'+link[index]+'" width="450px"/>');
$('.next').click(function(){
index = (index==link.length-1)?0:(index+1);
$('.large_view img').attr('src',link[index]);
});
$('.previous').click(function(){
index = (index==0)?(link.length-1):(index-1);
$('.large_view img').attr('src',link[index]);
});
div.large_viewimg{
width:400px;
height:100px;
}
<scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script><divclass="large_view"></div><buttonclass="previous">previous</button><buttonclass="next">next</button>
Post a Comment for "Next And Previous In Jquery Array"