index.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // import 'css/bootstrap.less';
  2. import 'bootstrap/dist/js/bootstrap.js';
  3. import 'css/newMenu/public.css';
  4. import 'css/newMenu/header.css'
  5. import 'css/newMenu/index.css';
  6. import 'css/inded.css';
  7. //import 'js/banner.js';
  8. import 'js/public.js';
  9. (function(){
  10. "use strict";
  11. init();
  12. function init(){
  13. banner();
  14. };
  15. //轮播
  16. navTop();
  17. function navTop() {
  18. $(window).scroll(function(){
  19. var scrolltop=$(document).scrollTop();
  20. if(scrolltop>0){
  21. $('.topNav').addClass('navFix')
  22. }else{
  23. $('.topNav').removeClass('navFix');
  24. }
  25. });
  26. }
  27. function banner(){
  28. $('#myCarousel').carousel({
  29. interval: 4000
  30. })
  31. };
  32. //搜索框上面栏目的选择
  33. $(".jumpType li").click(function(){
  34. $(this).addClass("active");
  35. $(this).siblings().removeClass("active");
  36. })
  37. //搜索功能
  38. $(".searchImg").click(function(){
  39. //var seachon=$(".jumpType li.active").index();
  40. var key=$('.demandSearch').val();
  41. sessionStorage.setItem("name",key);
  42. window.open(globalConfig.context + `/portal/search.html`);
  43. // switch(seachon){
  44. // case 0:window.open(globalConfig.context + `/portal/technologyTrading/achievementList.html?name=${key}`);break;
  45. // case 1:window.open(globalConfig.context + `/portal/technologyTrading/demandList.html?name=${key}`);break;
  46. // case 2:window.open(globalConfig.context + `/portal/service/patentList?name=${key}`);break;
  47. // case 3:window.open(globalConfig.context + `/portal/thinkTank/policyList?name=${key}`);break;
  48. // case 4:window.open(globalConfig.context + `/portal/service/serviceList?name=${key}`);break;
  49. // default :break;
  50. // }
  51. })
  52. function task(){
  53. if($(".brands>div>img:nth-child(1)").hasClass("active")){
  54. $(".brands>div>img:nth-child(3)").css("opacity","0");
  55. $(".brands>div>img").removeClass("bni").removeClass("ani").removeClass("active");
  56. $(".brands>div>img:nth-child(2)").addClass("ani").addClass("active");
  57. }else if($(".brands>div>img:nth-child(2)").hasClass("active")){
  58. $(".brands>div>img:nth-child(1)").css("opacity","0");
  59. $(".brands>div>img").removeClass("bni").removeClass("ani").removeClass("active");
  60. $(".brands>div>img:nth-child(3)").addClass("ani").addClass("active");
  61. }else if($(".brands>div>img:nth-child(3)").hasClass("active")){
  62. $(".brands>div>img:nth-child(2)").css("opacity","0");
  63. $(".brands>div>img").removeClass("bni").removeClass("ani").removeClass("active");
  64. $(".brands>div>img:nth-child(1)").addClass("ani").addClass("active");
  65. }
  66. }
  67. setInterval(task,4000);
  68. //初始悬浮窗口处理
  69. initModel();
  70. function initModel(){
  71. if(!sessionStorage['initVal']){ //为true时显示了一次
  72. $('.initModel').addClass('active');
  73. }
  74. $('.initModel .glyphicon-remove').click(function(){
  75. $(this).parents('.initModel').removeClass('active');
  76. sessionStorage['initVal']=true;
  77. })
  78. if($('.initModel').hasClass('active')){
  79. setTimeout(()=>{
  80. $('.initModel .glyphicon-remove').trigger('click');
  81. },10000)
  82. }
  83. }
  84. }())