$(function(){ // 鏃堕棿杞? var timernum = 0; var space = 210; // 绉诲姩闂磋窛 var length = $('.timer-scale-cont').length, numl; // 鍒嗚鲸鐜? if(window.screen.width > 1500) { numl = length - 4 } else if(window.screen.width < 1500) { numl = length - 3 } // 鐐瑰嚮宸︿晶 $('.timer-left').on('click', function () { if(timernum > 0) { timernum -= 1; movel(timernum, numl) } tags(timernum); }) // 鐐瑰嚮鍙充晶 $('.timer-right').on('click', function () { if(timernum < length - 1) { timernum += 1; tags(timernum); } movel(timernum, numl) }) // 鐐瑰嚮骞? $('.time-circle').each(function (index) { $(this).on('click', function () { timernum = index; movel(timernum, numl) tags(timernum); }) }) function tags(num){ $('.timer-scale-cont').eq(num).addclass('hov').siblings().removeclass('hov'); $('.shaft-detail-cont').eq(num).show().siblings().hide(); } function movel(num, len) { if (num < len) { moveleft = -num * space; $('.timer-scale').animate({left:moveleft}, 700); } } })