脚本幻灯片
我正在尝试制作一个脚本幻灯片,但我不知道如何循环 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何存储幻灯片的图像?如果您使用数组,那么您正在寻找
imageArray.length
。您也可以查看lightbox 的源代码,因为它使用原型和 scriptacolous 以及使用数组来存储分组图像。在纯 JavaScript 中,您可以执行以下操作来获取包含在带有 ID 的 div 中的图像数组:
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:
scriptaculous 是基于原型构建的,因此您可以
循环遍历父 div 中的子项
scriptaculous is built on prototype so you can do
then to loop through the children in the parent div you can do