脚本幻灯片

发布于 2024-08-17 09:04:42 字数 100 浏览 4 评论 0原文

我正在尝试制作一个脚本幻灯片,但我不知道如何循环 div 标签中的所有图像,然后检查它是否是最后一个图像并将其分配给第一个图像。我可以自己添加淡入淡出之类的东西,但我不知道如何循环它们。

I am trying to make a scriptaculous slideshow but I have no idea how to loop over all the images in the div tag and then check if it is the last image and assign it to the first img. I can add the fading and whatnot myself but I have no idea how to loop through them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽清梦 2024-08-24 09:04:42

如何存储幻灯片的图像?如果您使用数组,那么您正在寻找imageArray.length。您也可以查看lightbox 的源代码,因为它使用原型和 scriptacolous 以及使用数组来存储分组图像。

在纯 JavaScript 中,您可以执行以下操作来获取包含在带有 ID 的 div 中的图像数组:

getImageArray = function(containerId) {
    var containerElement = document.getElementById(containerId);
    if (containerElement) {
        var imageArray = containerElement.getElementsByTagName("img");
        return imageArray;
    } else {
        return null; // or something similar
    }
}

How do you store the images for the slideshow? If you use arrays, then you are looking for imageArray.length. Also you may have a look at the source code for lightbox, as it uses prototype and scriptacolous as well and uses arrays for storing grouped images.

In pure JavaScript you would do something this to get the images as an array included in a div with an ID:

getImageArray = function(containerId) {
    var containerElement = document.getElementById(containerId);
    if (containerElement) {
        var imageArray = containerElement.getElementsByTagName("img");
        return imageArray;
    } else {
        return null; // or something similar
    }
}
尐籹人 2024-08-24 09:04:42

scriptaculous 是基于原型构建的,因此您可以

var arrayOfChildren = $('myContainerDIvId').childElements();
// myContainerDiv is the id of the parent Div.
var numberOfChildren = arrayOfChildren.length;
arrayOfChildren[numberOfChildren] will = the last child in the parent div.

循环遍历父 div 中的子项

for(i=0; i<numberOfChildren; i++){
  // do something with arrayOfChildren[i]
}

scriptaculous is built on prototype so you can do

var arrayOfChildren = $('myContainerDIvId').childElements();
// myContainerDiv is the id of the parent Div.
var numberOfChildren = arrayOfChildren.length;
arrayOfChildren[numberOfChildren] will = the last child in the parent div.

then to loop through the children in the parent div you can do

for(i=0; i<numberOfChildren; i++){
  // do something with arrayOfChildren[i]
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文