item.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. $(function(){
  2. //项目详情
  3. $(".content1").click(function(){
  4. $(this).addClass("details_on").siblings().removeClass("details_on");
  5. $(".specific").show();
  6. $(".place").show();
  7. $(".bigdiv").show();
  8. $(".poster").hide();
  9. $(".sec5").hide();
  10. $(".sec8").hide();
  11. $(".sec6").hide();
  12. $(".sec7").show();
  13. });
  14. //品牌资讯
  15. $(".content2").click(function(){
  16. $(this).addClass("details_on").siblings().removeClass("details_on");
  17. $(".specific").show();
  18. $(".place").show();
  19. $(".bigdiv").hide();
  20. $(".sec5").hide();
  21. $(".sec8").hide();
  22. $(".sec6").show();
  23. $(".sec7").hide();
  24. $(".poster").hide();
  25. });
  26. //产品图片
  27. $(".content3").click(function(){
  28. $(this).addClass("details_on").siblings().removeClass("details_on");
  29. $(".specific").show();
  30. $(".place").show();
  31. $(".bigdiv").hide();
  32. $(".sec5").show();
  33. $(".sec8").hide();
  34. $(".sec6").hide();
  35. $(".sec7").show();
  36. $(".poster").hide();
  37. });
  38. //门店展示
  39. $(".content4").click(function(){
  40. $(this).addClass("details_on").siblings().removeClass("details_on");
  41. $(".specific").show();
  42. $(".place").show();
  43. $(".bigdiv").hide();
  44. $(".sec5").hide();
  45. $(".sec8").show();
  46. $(".sec6").hide();
  47. $(".sec7").show();
  48. $(".poster").hide();
  49. });
  50. //招商海报
  51. $(".content6").click(function(){
  52. $(this).addClass("details_on").siblings().removeClass("details_on");
  53. $(".place").hide();
  54. $(".specific").hide();
  55. $(".poster").show();
  56. });
  57. })