这个请求很简单,但很难用谷歌搜索。以下是要求:
- 我有一个带有图片网址的 JS 数组
- 我没有任何支持的 html
- 我想要一个像样的幻灯片插件来使用这个数组并给我一个幻灯片
- 幻灯片支持使用键盘导航(奖励)
到目前为止,我看到了很多需要大量复杂的支持 html 和 css 的幻灯片插件。无论如何,构建这个 html 以便通过幻灯片插件对其进行转换似乎有些愚蠢。
另外,我不知道这些幻灯片插件背后的一些代码有多糟糕。天哪!
这是我快速整理的一些东西(根本没有测试过——它只是为了想法),你可能可以在上面进行开发。应该不难。
var imgs = ['a.png', 'b.png', 'c.png'];
function Slideshow(img_list, container) {
var self = this;
var $slides = [];
var current = { 'ith': 0, '$slide': null };
function initialize() {
// Create the images
img_list.map(function (i) {
$slides.push($('<img>').attr('src', i).hide().appendTo(container));
});
current.$slide = $slides[0];
current.ith = 0;
// Initialize binds (jquery hotkeys or something)
$(document).bind('keydown', '>', function () {
// Do stuff
self.next();
});
$(document).bind('keydown', '<', function () {
// Do stuff
self.prev();
});
};
this.indexTo = function (i) {
current.$slide.hide();
current.$slide = $slides[i];
current.ith = i;
if (current.$slide ==== undefined) {
if (i < 0) {
current.$slide = $slides[$slides.length - 1];
current.ith = $slides.length - 1;
} else {
current.$slide = $slides[0];
current.ith = 0;
}
}
// Effects or something else
return current.$slide.show();
};
this.next = function () {
return self.indexTo(current.ith++);
};
this.prev = function () {
return self.indexTo(current.ith--);
};
initialize();
};
这个名为Cycle的jQuery 插件是我见过的最好的幻灯片之一(它不是灯箱类型)。我查看了文档,它似乎没有键盘支持,也没有为图像使用数组的选项,但它确实有动态添加更多图像的示例。总之,自己判断吧。