如何从 php 生成的 jquery 数组创建图像幻灯片
首先,我没有编写任何代码。我的问题是如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你会想做这样的事情..
Youre going to want to do something like this..