我正在使用这个库,我想做的是将整个系列的图像动态加载到一个元素中:
<div id="product" style="width: 640px; height: 300px; overflow: hidden;">
/* These images are loaded and appended to the div element dynamically
<img src="images/01.jpg" alt="" />
<img src="images/02.jpg" alt="" />
<img src="images/03.jpg" alt="" />
<img src="images/04.jpg" alt="" />
<img src="images/05.jpg" alt="" />
<img src="images/06.jpg" alt="" />
/*
</div>
然后调用j360库进行设置:
jQuery(document).ready(function() {
jQuery('#product').j360();
});
加载图像后。
我只看过这样加载一个图像的教程....有没有按顺序加载和附加一堆图像的技术?
提前致谢