Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

public.js 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. function getStyle(ele, attr){//获取样式
  2. return window.getComputedStyle ? window.getComputedStyle(ele, null)[attr] : ele.currentStyle[attr];
  3. }
  4. function signClassChange(){//标签类选择器变更
  5. let string = typeof(arguments[1]) == "undefined" ? "" : arguments[1];
  6. for(let i = 0; i < arguments[0].length; i++){ arguments[0][i].className = string; }
  7. }
  8. function leftChange(arr, num){//偏移切换
  9. for(let i = 0; i < arr.length; i++){
  10. arr[i].style.left = num + "px";
  11. }
  12. }
  13. function getActiveIndex(arr){//获取数组活动项下标
  14. let i = 0;
  15. for(i; i < arr.length; i++){
  16. if(arr[i].className == "active"){
  17. return i;
  18. }
  19. }
  20. return 0;
  21. }
  22. function getBodyWH(){//获取页面宽高
  23. return [
  24. document.body.clientWidth,
  25. document.body.clientHeight
  26. ]
  27. }
  28. function replaceStr(str, tge){//将字符串中所有换行符替换为tga
  29. return str.replace(/\n/g, tge);
  30. }
  31. setTimeout(function(){//内页导航选定
  32. let position_link = document.querySelectorAll(".position a");
  33. let channel_lis = document.querySelectorAll(".channel ul li");
  34. channel_lis.forEach(function(item, index){
  35. item.index = index;
  36. if(item.querySelector("a").innerHTML == position_link[position_link.length - 1].innerHTML){
  37. item.className = "active";
  38. return;
  39. }
  40. });
  41. }, 300);
  42. let citysitedrop = false;
  43. $('.header .dest span').click(function(){
  44. citysitedrop = ! citysitedrop;
  45. if(citysitedrop){
  46. $('.header .area').slideDown();
  47. $('.header .dest img').css('transform', 'rotate(180deg)');
  48. }else{
  49. $('.header .area').slideUp();
  50. $('.header .dest img').css('transform', 'rotate(0deg)');
  51. }
  52. });
  53. let aside = true;
  54. $('.aside .arrow').click(function(){
  55. aside = ! aside;
  56. if(aside){
  57. $('.aside').css('right','0');
  58. $('.aside .open').css('opacity','0');
  59. }else{
  60. $('.aside').css('right','-128px');
  61. $('.aside .open').css('opacity','1');
  62. }
  63. });
  64. $('.aside .open').click(function(){
  65. aside = true;
  66. $('.aside').css('right','0').find('.open').css('opacity','0');
  67. });
  68. window.onscroll = function(){
  69. let h = document.body.scrollTop != 0 ? document.body.scrollTop : document.documentElement.scrollTop;
  70. if(h >= 272){
  71. $('.header .wrap').hide();
  72. $('.header .nav-bar .bg-box2').hide();
  73. $('.header').css({
  74. 'position':'fixed',
  75. 'top':'0'
  76. })
  77. }else{
  78. $('.header .wrap').show();
  79. $('.header .nav-bar .bg-box2').show();
  80. $('.header').css('position','unset')
  81. }
  82. }
  83. //商桥
  84. setTimeout(function(){
  85. $('#nb_nodeboard').css('display', 'none');
  86. $('#nb_icon_wrap').css('display', 'none');
  87. }, 1500);