我正在寻找使用jQuery创建淡入淡出图像幻灯片的最短路径。 我在谷歌上发现的例子总是有很多不必要的特殊内容,我很难理解它们。 :/
幻灯片显示需要输入现有图像:
<img src="myImage.jpg"/>
使用follogin图像:
imgArray = ["img1.jpg","img2.jpg","img3.jpg"]
最简单/最简单的方法是什么?
答案 0 :(得分:2)
希望下面的代码可以帮到你,
var imgArray = ["img1.jpg","img2.jpg","img3.jpg"];
var i=0;
setInterval(function(){
$('div').fadeToggle(2000,function(){
$(this).text(imgArray[i]);
});
i++;
if(imgArray.length==i-1){
i=0;
}
},2000);
答案 1 :(得分:2)
在这里,你可以在15分钟内把它们放在一起......
<强> FIDDLE:强> http://jsfiddle.net/eEg3R/4/
<img id="slide" src=""/>
var images = ['http://placehold.it/300x300/000','http://placehold.it/300x300/ddd','http://placehold.it/300x300/123456'];
function slideshow(options) {
var defaults ={
fadeInSpeed:1000,
fadeOutSpeed:1000,
slideLength:4000
}
//merge options with defaults
var settings= $.extend({},defaults,options);
//get a reference to our image holder
var $slide = $('#slide');
//initialize the slide index
var slideIndex=0;
//begin the slideshow
nextSlide();
function nextSlide(){
//load the new image...
$slide[0].src = images[slideIndex];
//show it
$slide.fadeIn(settings.fadeInSpeed,function(){
setTimeout(function(){
$slide.fadeOut(settings.fadeOutSpeed,nextSlide);
//increment index and reset to 0 when we have reached the end
slideIndex = ++slideIndex % images.length;
},settings.slideLength);
});
}
}
$(function(){
//optionally pass in custom settings, or just run normal to use defaults...
slideshow();
});
答案 2 :(得分:1)
你可以遍历你的数组并使用Jquery的fadeIn与fadeOut一起使用指定的持续时间。这将以指定的间隔淡入和淡出您的图像。
答案 3 :(得分:0)
您可以按照此链接创建图片幻灯片,代码非常少 背后的整个想法是在改变图像位置的同时滑动图像位置并使用转换效果。
http://jforjs.com/creating-image-slider-html-css-without-plugin/
好处是你可以创建一个面向对象的代码(jquery pluing)以及用几行代码创建多个图像幻灯片。