Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. if($('.swiper')[0]){
  43. let swiper = new Swiper('.swiper', {
  44. spaceBetween:0,
  45. centeredSlides:true,
  46. loop:true,
  47. autoplay:{
  48. delay:5000,
  49. disableOnInteraction:false,
  50. },
  51. pagination:{
  52. el:'.swiper-pagination',
  53. clickable:true,
  54. },
  55. });
  56. }
  57. let droplist = false;
  58. $('.header-box .menu-btn button').click(function(){
  59. droplist = ! droplist;
  60. if(droplist){
  61. $('.layer').css({
  62. 'z-index':'100',
  63. 'opacity':'1'
  64. });
  65. $('.mask').css('display','block');
  66. }
  67. });
  68. $('.layer .close-icon img').click(function(){
  69. droplist = false;
  70. $('.mask').css('display','none');
  71. $('.layer').css({
  72. 'z-index':'-1',
  73. 'opacity':'0'
  74. });
  75. });
  76. $('.mask').click(function(){
  77. droplist = false;
  78. $(this).css('display','none');
  79. $('.layer').css({
  80. 'z-index':'-1',
  81. 'opacity':'0'
  82. });
  83. });