如何从 php 生成的 jquery 数组创建图像幻灯片

发布于 2024-12-03 08:45:59 字数 503 浏览 0 评论 0原文

首先,我没有编写任何代码。我的问题是如何使用 jQuery 数组来滚动它们的值。

我想迭代数组,数组的值是 PHP 提供的缩略图的 URL。

例如。

<?php

$folderThumbArray = array(
http://cdn.sitename.ltd/md3slk3.th.jpg,
http://cdn.sitename.ltd/n3oqPls.th.jpg,
http://cdn.sitename.ltd/l9nkAla.th.jpg,
http://cdn.sitename.ltd/P9jKLmn.th.jpg,
http://cdn.sitename.ltd/9nsJUol.th.jpg,
);

$objThumbArray = print_r($folderThumbArray);

?>

以下代码将从文件夹中选择并创建数组,然后将它们交给 jQuery。

我可以用 jQuery 做什么来让它像微型余兴节目一样滚动浏览这个数组?

For starters I do not have any code written. My question is along the lines how to use Arrays with jQuery to scroll through their values.

I would like to iterate arrays with values of the arrays being URL's to the thumbnails provided by PHP.

So for example.

<?php

$folderThumbArray = array(
http://cdn.sitename.ltd/md3slk3.th.jpg,
http://cdn.sitename.ltd/n3oqPls.th.jpg,
http://cdn.sitename.ltd/l9nkAla.th.jpg,
http://cdn.sitename.ltd/P9jKLmn.th.jpg,
http://cdn.sitename.ltd/9nsJUol.th.jpg,
);

$objThumbArray = print_r($folderThumbArray);

?>

The following code would select and create arrays from a folder and then hand them over to jQuery.

What can I do with jQuery to allow it to scroll through this Arrays as if a miniature sideshow?

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

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

发布评论

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

评论(1

旧时浪漫 2024-12-10 08:45:59

你会想做这样的事情..

<div id="slideShow">
<?php
foreach($folderThumbArray as $val){
    echo '<img src="'$val'" />';
}
?>
</div>

Youre going to want to do something like this..

<div id="slideShow">
<?php
foreach($folderThumbArray as $val){
    echo '<img src="'$val'" />';
}
?>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文