Плагин поворота на 360 градусов с дефолтным управлением

0%

    Разметка

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

    Javascript

    
          window.onload = init;
    
          var product;
          function init(){
    
            product1 = $('.product1').ThreeSixty({
              totalFrames: 72,
              endFrame: 72,
              currentFrame: 1,
    
              imgList: '.threesixty_images',
              progress: '.spinner',
              imagePath:'assets/product1/',
              filePrefix: 'ipod-',
              ext: '.jpg',
              height: 265,
              width: 400,
              navigation: true
            });
    
          }