company_profile.js 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * Created by Administrator on 2018/3/16.
  3. */
  4. window.onload = function(){
  5. //高度自适应
  6. // $(".contact").css("height",window.screen.width/3.5);
  7. // $(".contact img").css("height",window.screen.width/3.5);
  8. //中英文之间的转化
  9. $("#eng").click(function(){
  10. $(".footer_title p:first-child").html("Fujian Shengteng Knltting Textlle Co.,Ltd.");
  11. $(".footer_top li:first-child").html("Contacts:LINXUEGUI(General Manager)");
  12. $(".footer_top li:nth-child(2)").html("Tel:+86 0591-28761238");
  13. $(".footer_top li:nth-child(3)").html("Mobile:13599097555");
  14. $(".footer_top li:last-child").html("Fax:+86 0591-28761296");
  15. $(".footer_bottom li:first-child").html("E-mail:fjshengteng@163.com");
  16. $(".footer_bottom li:last-child").html("Add:shenjutengda,Songxia Town,Changle City,Fujian Province,China");
  17. $(this).css("background","#5E97F5");
  18. $("#chn").css("background","transparent");
  19. });
  20. $("#chn").click(function(){
  21. $(".footer_title p:first-child").html("福建升腾针纺有限公司");
  22. $(".footer_top li:first-child").html("联系人:林雪贵(总经理)");
  23. $(".footer_top li:nth-child(2)").html("手机号码:13599097555");
  24. $(".footer_top li:nth-child(3)").html("电话:0591-28761238");
  25. $(".footer_top li:last-child").html("传真:0591-28761296");
  26. $(".footer_bottom li:first-child").html("邮箱:fjshengteng@163.com");
  27. $(".footer_bottom li:last-child").html("公司地址:福建省长乐市松下镇龙纺工业区");
  28. $(this).css("background","#5E97F5");
  29. $("#eng").css("background","transparent");
  30. });
  31. }