123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- // 首页日期
- function getWeek(dateString) {
- var day = new Date(Date.parse(dateString));
- var today = new Array('星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六');
- var week = today[day.getDay()];
- return week;
- };
- function indexDateF(){
- $('.zhibolist .datedd').remove();
- function tDou(n){
- return n>9? n: "0"+n;
- }
- function GetDateStr(AddDayCount) {
- var dd = new Date();
- dd.setDate(dd.getDate()+AddDayCount);
- var y = dd.getFullYear();
- var m = tDou(dd.getMonth()+1);
- var d = tDou(dd.getDate());
- return [y+"-"+m+"-"+d,m,d,y];
- }
- for(i=-1;i<10;i++){
- var str=GetDateStr(i)[0];
- var m=GetDateStr(i)[1];
- var d=GetDateStr(i)[2];
- var y=GetDateStr(i)[3];
- if($('.zhibolist li[data-matchtime^='+str+']').length>0){
- var oDHtml="<p class='charutime'><cite>"+y+"-"+m+"-"+d+"</cite><em>"+ getWeek(GetDateStr(i)[0]) +"</em></p>";
- $('.zhibolist li[data-matchtime^='+str+']').eq(0).before(oDHtml);
- }
- }
- }
- indexDateF();
-
- //首页滑动
- window.onload = function() {
- var navSwiper = new Swiper('#header', {
- freeMode: true,
- slidesPerView: 'auto',
- freeModeSticky: true,
- });
- }
- $(function(){
- var dqwzsy=$(".on").index("#header .swiper-wrapper li a")
- if(dqwzsy >5){
- $("#header .swiper-wrapper").css({
- "transform": "translate3d(-124px, 0px, 0px)",
- "transition-duration": "0ms"
- })
- }
- })
-
- //首页筛选
- $('.index_z_caid_shaixuan').click(function(){
- $('.mark_wrap').show();
- $('body').css('overflow','hidden');
- $('body').css('position','fixed');
- });
- $('.sx_con_wrap_cos').click(function(){
- $('.mark_wrap').hide();
- $('body').css('overflow','auto');
- $('body').css('position','static');
- });
- // 首页分类点击切换
- $('.index_z_caid li').click(function(){
- var oIndex=$(this).index();
- $('.index_z_caid_wrap .top-event-type li').eq(oIndex).addClass('flhover').siblings('li').removeClass('flhover');
- $('.index_z_caid_wrap .index_z_caid li').eq(oIndex).addClass('flhover').siblings('li').removeClass('flhover');
- var oType=$(this).attr("data-type");
- $('.top-event-type').attr('data-type',oType);
- if(oType==0){
- $('.index_zhibo_wrap li').show();
- $(".index_zhibo_wrap li.datedd").show();
- }else if(oType>0){
- $(".index_zhibo_wrap li.datedd").hide()
- $('.index_zhibo_wrap li').each(function(i){
- if($('.index_zhibo_wrap li').eq(i).attr("data-type")==oType){
- $('.index_zhibo_wrap li').eq(i).show();
- $('.index_zhibo_wrap li').eq(i).prevAll('.datedd').eq(0).show();
- }else{
- $('.index_zhibo_wrap li').eq(i).hide();
- }
- })
- }else if(oType<5){
- $('.index_zhibo_wrap li').each(function(i){
- if($('.index_zhibo_wrap li').eq(i).attr("is_important")==1){
- $('.index_zhibo_wrap li').eq(i).show();
- $('.index_zhibo_wrap li').eq(i).prevAll('.datedd').eq(0).show();
- }else{
- $('.index_zhibo_wrap li').eq(i).hide();
- }
- })
- }
- })
- //首页切换
- $('.za_n_ua_wrap_top ').children("li").each(function(index, element) {
- $(this).click(function() {
- $(this).addClass('za_n_ua_wrap_top_cor').siblings().removeClass('za_n_ua_wrap_top_cor')
- $($(".tab").children()[index]).css("display", "block")
- $($(".tab").children()[index]).siblings().css("display", "none")
- })
- })
|