我目前在网站上使用一个名为 supersized 的全屏图像滑块,它在脚本标签中引用图像和相关的附加内容,如下所示:
<script type="text/javascript">
jQuery(function($){
$.supersized({
// Functionality
property_1 : value,
property_2 : value,
slides : [
{image :'http://image1.jpg', title :'Name1', url :'1.html'},
{image :'http://image2.jpg', title :'Name2', url :'2.html'},
{image :'http://image3.jpg', title :'Name3', url :'3.html'},
],
// Options
option_1 : value,
option_1 : value
});
});
</script>
非常棒的是,能够通过 ajax(首选 jquery,但 vanilla js 很好)动态加载一个新的图像数组及其相关的附加内容。这可能吗?如果是这样,我一直在努力寻找任何解释如何的资源。