Плагин поворота на 360 градусов с пользовательским управлением

0%

HTML разметка

      <div class="threesixty car">
          <div class="spinner">
            <span>0%</span>
          </div>
          <ol class="threesixty_images"></ol>
        </div>
    

Javascript

window.onload = init;

		var car;
		function init(){

		  car = $('.car').ThreeSixty({
			  totalFrames: 52, // Total no. of image you have for 360 slider
			  endFrame: 52, // end frame for the auto spin animation
			  currentFrame: 1, // This the start frame for auto spin
			  imgList: '.threesixty_images', // selector for image list
			  progress: '.spinner', // selector to show the loading progress
			  imagePath:'assets/product4/', // path of the image assets
			  filePrefix: '', // file prefix if any
			  ext: '.png', // extention for the assets
			  height: 447,
			  width: 1000,
			  navigation: true
		  });
		}