index.js 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. $(document).ready(function () {
  2. $('.list').hover(function () {
  3. let index = $(this).index();
  4. console.log(index)
  5. console.log($(this).find('.operations_icon'))
  6. var _this = $(this)
  7. $('.operations_icon').removeClass('is-leave')
  8. $(this).find('.operations_icon').addClass('is-enter')
  9. // $(this).find('.operations_bg1').removeClass('unactive')
  10. // $(this).find('.operations_bg1').addClass('active')
  11. // $(this).find('.operations_bg').removeClass('unactive_s')
  12. // $(this).find('.operations_bg').addClass('active_s')
  13. },
  14. function () {
  15. var _this = $(this)
  16. $(this).find('.operations_icon').addClass('is-leave')
  17. $('.operations_icon').removeClass('is-enter')
  18. // $(this).find('.operations_bg1').removeClass('active')
  19. // $(this).find('.operations_bg1').addClass('unactive')
  20. // $(this).find('.operations_bg').removeClass('active_s')
  21. // $(this).find('.operations_bg').addClass('unactive_s')
  22. })
  23. $('.demo-item').hover(function () {
  24. $(this).removeClass('active').siblings().removeClass('active')
  25. }, function () {
  26. $(this).addClass('active').siblings().removeClass('active');
  27. })
  28. $('.top').click(function (e) {
  29. e.preventDefault();
  30. $("body,html").animate({
  31. scrollTop: 0
  32. }, 500);
  33. });
  34. $('.industry-card').hover(function () {
  35. // $('.bg-video').trigger('pause');
  36. // $('.bg-video').trigger('load');
  37. $(this).find('.bg-video').trigger('play');
  38. $('.industry-card-desc').css({
  39. color: '#999'
  40. })
  41. $(this).find('.industry-card-desc').css({
  42. color: '#fff'
  43. })
  44. }, function () {
  45. // $('.bg-video').trigger('load');
  46. $(this).find('.bg-video').trigger('load');
  47. $(this).find('.industry-card-desc').css({
  48. color: '#999'
  49. })
  50. })
  51. $('.inde-video').trigger('play');
  52. // $("[data-toggle='popover']").popover();
  53. // $('#myModal').bootstrapValidator({
  54. // message: 'This value is not valid',
  55. // feedbackIcons: {
  56. // valid: 'glyphicon glyphicon-ok',
  57. // invalid: 'glyphicon glyphicon-remove',
  58. // validating: 'glyphicon glyphicon-refresh'
  59. // },
  60. // fields: {
  61. // username: {
  62. // message: 'The username is not valid',
  63. // validators: {
  64. // notEmpty: {
  65. // message: 'The username is required and can\'t be empty'
  66. // },
  67. // stringLength: {
  68. // min: 6,
  69. // max: 30,
  70. // message: 'The username must be more than 6 and less than 30 characters long'
  71. // },
  72. // regexp: {
  73. // regexp: /^[a-zA-Z0-9_\.]+$/,
  74. // message: 'The username can only consist of alphabetical, number, dot and underscore'
  75. // }
  76. // }
  77. // },
  78. // hobby: {
  79. // validators: {
  80. // notEmpty: {
  81. // message: 'The country is required and can\'t be empty'
  82. // }
  83. // }
  84. // },
  85. // email: {
  86. // validators: {
  87. // notEmpty: {
  88. // message: 'The email address is required and can\'t be empty'
  89. // },
  90. // emailAddress: {
  91. // message: 'The input is not a valid email address'
  92. // }
  93. // }
  94. // },
  95. // phoneNumber: {
  96. // validators: {
  97. // phone: {
  98. // message: 'The input is not a valid US phone number'
  99. // }
  100. // }
  101. // },
  102. // }
  103. // });
  104. $(window).scroll(function () {
  105. if ($(document).scrollTop() < 400) {
  106. $('.header').css({
  107. background: '#F7F9F6'
  108. })
  109. $('.header.active').css({
  110. background: '#F7F9F6'
  111. })
  112. } else {
  113. $('.header').css({
  114. background: '#fff'
  115. })
  116. $('.header.active').css({
  117. background: '#fff'
  118. })
  119. }
  120. });
  121. });