$(function() { // tab var $tab = $(".tab_ctrl").children(); $tab.each(function() { $(this).click(function() { var tab_index = $tab.index(this); var $tab_wrap = $(this).parent().next(".tab_wrap"); $(this).addClass("on").siblings().removeClass("on"); $tab_wrap.children().eq(tab_index).show().siblings().hide(); }); }); // title var $title = $(".title_ctrl").children(); $title.each(function() { $(this).click(function() { var title_index = $title.index(this); var $title_wrap = $(this).parent().next(".title_wrap"); $(this).addClass("on").siblings().removeClass("on"); $title_wrap.children().eq(title_index).show().siblings().hide(); }); }); // flex tab $(".flex_tab").each(function() { var tab_length = $(this).children().length; var tab_wa = 1 / tab_length; var tab_wb = tab_wa.toFixed(8); var tab_wc = tab_wb.slice(2, 4) + "." + tab_wb.slice(4, 8) + "%"; $(this).children().width(tab_wc); }); /*点击全选调系统复制功能*/ var inputkeyCode=$(".inputkeyCode"); for(var i=0;i= tips.p.length - 1) { tips.box.addEventListener("webkitTransitionEnd", tips.transEnd); } }, 5000); } }); $(document).ready(function(){ var $newCode=$(".gift-con .newCode");/*榜单切换*/ var $newtGift=$(".gift-con .newtGift"); $newCode.click(function(){ $(this).addClass("on"); $newtGift.removeClass("on"); $("#newCodeList").show(); $("#newGiftList").hide(); imageLoad(); }); $newtGift.click(function(){ $(this).addClass("on"); $newCode.removeClass("on"); $("#newCodeList").hide(); $("#newGiftList").show(); imageLoad(); }); }); /*图片大小的缩放*/ window.onload=imageLoad; function imageLoad() { $(".dateilImg img").each(function(i){ if($(this).width() > 290){ $(this).width(290); } }) }