| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- $(function(){
- //项目详情
- $(".content1").click(function(){
- $(this).addClass("details_on").siblings().removeClass("details_on");
- $(".specific").show();
- $(".place").show();
- $(".bigdiv").show();
- $(".poster").hide();
- $(".sec5").hide();
- $(".sec8").hide();
- $(".sec6").hide();
- $(".sec7").show();
- });
- //品牌资讯
- $(".content2").click(function(){
- $(this).addClass("details_on").siblings().removeClass("details_on");
- $(".specific").show();
- $(".place").show();
- $(".bigdiv").hide();
- $(".sec5").hide();
- $(".sec8").hide();
- $(".sec6").show();
- $(".sec7").hide();
- $(".poster").hide();
- });
- //产品图片
- $(".content3").click(function(){
- $(this).addClass("details_on").siblings().removeClass("details_on");
- $(".specific").show();
- $(".place").show();
- $(".bigdiv").hide();
- $(".sec5").show();
- $(".sec8").hide();
- $(".sec6").hide();
- $(".sec7").show();
- $(".poster").hide();
- });
- //门店展示
- $(".content4").click(function(){
- $(this).addClass("details_on").siblings().removeClass("details_on");
- $(".specific").show();
- $(".place").show();
- $(".bigdiv").hide();
- $(".sec5").hide();
- $(".sec8").show();
- $(".sec6").hide();
- $(".sec7").show();
- $(".poster").hide();
- });
- //招商海报
- $(".content6").click(function(){
- $(this).addClass("details_on").siblings().removeClass("details_on");
- $(".place").hide();
- $(".specific").hide();
- $(".poster").show();
- });
- })
|