$(document).ready(function () { $(".Act9_Count_Down").each(function(){ var $this = $(this), hour = $(this).attr("hour"), min = $(this).attr("minute"), sec = $(this).attr("second"), time = $(this).attr("time"); setInterval(function(){ time -=1; var str = '', date = new Date(), new_hour = Math.floor(time/3600), new_min = Math.floor(time/60)%60, new_sec = time%60; if(new_hour < 0){ str += '00:'; }else if(new_hour < 10){ str += '0'+(new_hour) + ':'; }else{ str += (new_hour) + ':'; } if(new_min < 0){ str += '00:'; }else if(new_min < 10){ str += '0'+(new_min) + ':'; }else{ str += (new_min) + ':'; } if(new_sec < 0){ str += '00'; }else if(new_sec < 10){ str += '0'+(new_sec); }else{ str += (new_sec); } $this.html(str); },1000); }); }); $(".today-wrapper").owlCarousel({ loop : true, items : 1, nav : true, navText : ['',''], dots:false, autoplay:true, navSpeed:1000, autoplayTimeout:8000, autoplaySpeed:1000, }); $(".sellList-wrapper").on('mouseenter', '.sellList-item', function(event) { $(".sellList-item.open").removeClass('open'); $(this).addClass('open'); });