我正试图通过幻灯片显示jquery backstretch。到目前为止,我对该页面的代码是直接从后台演示页面复制的:http://srobbin.com/demos/jquery-backstretch/examples/slideshow.html
该页面非常简单,我的代码到目前为止看起来像这样:
<head>
<title>Coconut Hotel Ecuador</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<script src="plugins/srobbin-jquery-backstretch-14ce02f/lib/jquery.min.js"></script>
<script src="plugins/srobbin-jquery-backstretch-14ce02f/jquery.backstretch.min.js"></script>
<script>
$.backstretch(["beach.jpg",
"swing.jpg"]);
</script>
我已经尝试过,有没有持续时间和褪色但没有快乐。另外,只使用一个图像,它工作正常。不止一个,它只是一个白色背景。看着萤火虫我得到了这个错误:
<img style="position: absolute; display: none; margin: 0px; padding: 0px; border: medium none; z-index: -999999;" src="beach.jpg,swing.jpg">
显然没有找到图像来源。
任何帮助表示感谢。