单击添加图像后的jquery图像滑块

时间:2014-09-18 11:19:31

标签: jquery arrays random click slider

如何在点击功能结束后添加自动数组元素?

$(document).ready(function(){
       $('.imageOne').click(function(){
            $('.imageOne').hide();
         var link = "images/" + arrayPic(); //function get 1 random element from image name array
        $(this).show("slide", { direction: "right" }, 300).attr("src","/folder/" +  link);
        $(this).hide("slide", { direction: "right" }, 300);
});

所以在此单击功能图像后从左侧滑动然后转到右侧。点击功能结束后如何添加新图片(例如编写代码)。

1 个答案:

答案 0 :(得分:0)

你可以使用像这样的动画功能

$('.imageOne').click(function(){
this.animate({
right: '300px'
},function(){

//when animation is complete

});

}