默认配置 用户控制设置 响应设置 全屏设置
0%

响应设置配置用法:

引入css:
#container{ padding-top: 50px; } html,body{ background: rgb(73,74,95); } h4{ color:#000; } .product1{ width:1000px; height: 447px; }
引入html: <div class="threesixty product1"> <div class="spinner"> <span>0%</span> </div> <ul class="threesixty_images"></ul> </div>
引入js: function init(){ var _width = $('.product1').width(), _height = $('.product1').height(); var car = $('.product1').ThreeSixty({ totalFrames: 52, endFrame: 52, currentFrame: 1, imgList: '.threesixty_images', progress: '.spinner', imagePath:'images/car/', filePrefix: '', ext: '.png', height: _height, width: _width, navigation: false, disableSpin: true }); $('.custom_previous').bind('click', function(e) { car.previous(); }); $('.custom_next').bind('click', function(e) { car.next(); }); $('.custom_play').bind('click', function(e) { car.play(); }); $('.custom_stop').bind('click', function(e) { car.stop(); }); } init();