$(function() { //鐢熸垚涓嬮儴灏忔寜閽? var length = $('#slideshow_photo a').length; for(var i = 0; i < length; i++) { $('
').appendto('#slideshow_footbar'); } $('#slideshow_footbar .slideshow-bt:last').addclass('bt-on'); $('#slideshow_footbar .slideshow-bt').mouseenter(function(e) { slideto(this); }); var indexallowautoslide = true; $('#slideshow_wrapper').mouseenter(function() { indexallowautoslide = false; }).mouseleave(function() { indexallowautoslide = true; }); //婊氬姩 setinterval(function() { if (indexallowautoslide) slidedown(); },3000); }); function slidedown() { var currentbt = $('#slideshow_footbar .slideshow-bt.bt-on'); if (currentbt.length <= 0) return; var nxt = currentbt.get(0).previoussibling; slideto(nxt?nxt:$('#slideshow_footbar .slideshow-bt:last').get(0)); } function slideto(o) { if (!o) return; var currentindex = $('#slideshow_footbar .slideshow-bt.bt-on').attr('index'), current = $('#slideshow_photo a[index='+currentindex+']'); var nxt = $('#slideshow_photo a[index='+$(o).attr('index')+']'); if (currentindex == $(o).attr('index')) return; if (nxt.find('img[imgsrc]').length > 0) { var img =nxt.find('img[imgsrc]'); img.attr('src',img.attr('imgsrc')).removeattr('imgsrc'); } $('#slideshow_footbar .slideshow-bt.bt-on').removeclass('bt-on'); $(o).addclass('bt-on'); nxt.css('z-index',2); current.css('z-index',3).fadeout(500,function() { $(this).css('z-index','1').show(); var img = nxt.next('a').find('img[imgsrc]'); if (img.length > 0) { img.attr('src',img.attr('imgsrc')).removeattr('imgsrc'); } }); } //slideshow end //--------------------------------------------------------- function get_live_status(){ /* 棣栭〉鐩存挱璁剧疆 */ var d = new date(); //alert(d.gethours()); if(d.gethours() <19) return; // 鍒?9鐐规墠璁℃椂 get_live_status_do(); interval = window.setinterval(function(){ get_live_status_do(); }, 60000); //window.clearinterval(interval); } function get_live_status_do(){ $.post("/ajax/home_page.php?action=index_live", { key:'v' }, function(data){ //alert(data); if(data !="" ){ var pos=data.indexof('@'); var program_id=data.substring(0,pos); var tmp=data.substr(pos+1); var ps=tmp.indexof('@'); var img_url=tmp.substring(0,ps); var title=tmp.substr(ps+1); $('#lmhd_live').show(); //鏄剧ず鐩存挱div $('#lmhd_default').hide(); //闅愯棌鍦ㄨ矾涓婇鍥? //$('#live_title').text(title); $('#lmhd_live_url_1').attr('href','/live/'+program_id);//鐩存挱閾炬帴 $('#lmhd_live_url_2').attr('href','/live/'+program_id); $('#lmhd_live_url_3').attr('href','/live/'+program_id); $('#lmhd_live_src').attr('src','/'+img_url);//鍥剧墖閾炬帴 }else{ $('#lmhd_live').hide(); $('#lmhd_default').show(); } }); } //--------------------------------------------------------------------