I have been having issues with using this open source plugin in one of my projects, http://www.pixedelic.com/plugins/camera
It is a slideshow plugin, and I'm trying to implement it in a basic method.
Here's my code:
HTML:
<div align="center">
<div class="camera_wrap camera_charcoal_skin" id="slideshow">
<div data-src="/resources/img/slideshow/image_1.jpg"></div>
<div data-src="/resources/img/slideshow/image_2.jpg"></div>
<div data-src="/resources/img/slideshow/image_3.jpg"></div>
<div data-src="/resources/img/slideshow/image_4.jpg"></div>
<div data-src="/resources/img/slideshow/image_5.jpg"></div>
<div data-src="/resources/img/slideshow/image_6.jpg"></div>
<div data-src="/resources/img/slideshow/image_7.jpg"></div>
<div data-src="/resources/img/slideshow/image_8.jpg"></div>
<div data-src="/resources/img/slideshow/image_9.jpg"></div>
<div data-src="/resources/img/slideshow/image_10.jpg"></div>
</div>
</div>
jQuery:
jQuery(function(){
jQuery("#slideshow").camera({
height: '30%',
thumbnails: 'false',
overlayer: 'true',
loader: 'bar',
time: '1000',
navigationHover: true
});
});
The slideshow works halfway. The forst image in the slideshow is displayed. The loading bar works fine as desired. However, when it proceeds to the second image, it just stops working. Neither can I navigate through the images, nor does it automatically open the next image. It just freezes.
Also, no transition effect is being shown. I'm unable to find where I went wrong.. Please review my code..