注釈:
speed:图片轮播速度
num:图片数
timer:自動轮播の時間間隔、定時器;
flowSpeed:滑块移動の速度
blockSlide插件ソースコード如下:
/**
* @著者 huajianhuakai*/
(function($)
{
$.fn.blockSlide = function(settings)
{
settings = jQuery.extend({
speed: "normal",
num: 4,
timer: 1000,
flowSpeed: 300
},
return this.each); (function()
{
$.fn.blockSlide.scllor($(this), 設定);
});
$.fn.blockSlide.scllor = 関数($this, 設定)
{
var インデックス = 0;
var imgScllor = $("div:eq(0)>div", $this); >//自動播放
var MyTime = setInterval(function()
{
ShowjQueryFlash(index);
index ;
if (index == settings.num)
index = 0;
}, settings.timer);
var ShowjQueryFlash = function(i)
{
$(imgScllor).eq(i).animate({ opacity: 1 }, settings.speed ).css({ "z-index": "100" }).siblings().animate({ opacity: 0 }, settings.speed).css({ "z-index": "0" }); 🎜>}
}
})(jQuery);