main.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. $(function() {
  2. var angle = 0;
  3. setInterval(function() {
  4. angle += 10;
  5. $("#bj-loding .ball div").rotate(angle);
  6. }, 50);
  7. $('.header .nav li').hover(function() {
  8. navem(this);
  9. }, function() {
  10. navem('.header .nav li.current');
  11. });
  12. navem('.header .nav li.current');
  13. function navem(e) {
  14. var left = $(e).position().left+10;
  15. var width = $(e).innerWidth()-20;
  16. $(".header .nav em").stop(true).animate({
  17. left: left,
  18. width: width
  19. }, 300);
  20. }
  21. var mySwiper_banner = new Swiper('.in_banner_swiper',{
  22. pagination: '.in_banner_pa',
  23. loop:true,
  24. grabCursor: true,
  25. autoplay : 3500,
  26. autoplayDisableOnInteraction : false,
  27. paginationClickable: true
  28. });
  29. var miniAppsList_swiper = new Swiper ('.miniAppsList-swiper', {
  30. slidesPerView: 4,
  31. paginationClickable: true,
  32. pagination: '.miniAppsList-pagination',
  33. grabCursor: true,
  34. autoplay: 3000,
  35. autoplayDisableOnInteraction : false,
  36. loop:true
  37. })
  38. $(window).scroll(function(){
  39. var scrollTop=0;
  40. scrollTop = $(document).scrollTop();
  41. var a = scrollTop/1000;
  42. if(a<=0.9){
  43. $(".header_w").css({"background":"rgba(0,0,0,"+a+")"});
  44. }if(a>0.9){
  45. $(".header_w").css({"background":"rgba(0,0,0,0.9)"});
  46. }
  47. });
  48. $(".in_case_list li").hover(function(){
  49. $(this).find(".l1").stop().animate({"width":"100%"});
  50. $(this).find(".l2").stop().animate({"height":"100%"});
  51. $(this).find(".l3").stop().animate({"width":"100%"});
  52. $(this).find(".l4").stop().animate({"height":"100%"});
  53. },function(){
  54. $(this).find(".l1").stop().animate({"width":"0"});
  55. $(this).find(".l2").stop().animate({"height":"0"});
  56. $(this).find(".l3").stop().animate({"width":"0"});
  57. $(this).find(".l4").stop().animate({"height":"0"});
  58. });
  59. $(".app_service_list li").hover(function(){
  60. $(this).find(".mask").stop().fadeIn();
  61. $(this).find(".li_c").stop().animate({"padding":"30px 0 80px;"});
  62. },function(){
  63. $(this).find(".mask").stop().fadeOut();
  64. $(this).find(".li_c").stop().animate({"padding":"40px 0 70px;"});
  65. })
  66. $(".app_advantage li").hover(function(){
  67. $(this).find(".icon").stop().animate({"top":"-55px"}).animate({"top":"-46px"});
  68. },function(){
  69. $(this).find(".icon").stop().animate({"top":"-46px"});
  70. })
  71. $(".web_advantage_list li").hover(function(){
  72. $(this).find(".line").stop().fadeOut();
  73. $(this).find(".mask").stop().fadeIn();
  74. $(this).find(".li_c").stop().delay(200).animate({"padding-top":"35%"});
  75. $(this).find(".des").stop().delay(400).fadeIn();
  76. },function(){
  77. $(this).find(".line").stop().fadeIn();
  78. $(this).find(".mask").stop().fadeOut();
  79. $(this).find(".li_c").stop().animate({"padding-top":"45%"});
  80. $(this).find(".des").stop().fadeOut();
  81. })
  82. $(".caseList li").hover(function(){
  83. $(this).find(".mask").stop().fadeIn();
  84. $(this).find(".title").stop().animate({"bottom":"50%","opacity":"1"});
  85. $(this).find(".des").stop().delay(200).animate({"bottom":"38%","opacity":"1"});
  86. },function(){
  87. $(this).find(".mask").stop().fadeOut();
  88. $(this).find(".title").stop().animate({"bottom":"-40px","opacity":"0"});
  89. $(this).find(".des").stop().animate({"bottom":"-40px","opacity":"0"});
  90. })
  91. setTimeout(function () {
  92. setTimeout(function () {
  93. $(".page_banner_mask .p1").animate({"top":"0","opacity":"1"});
  94. }, 400);
  95. setTimeout(function () {
  96. $(".page_banner_mask .p2").animate({"top":"0","opacity":"1"});
  97. }, 800);
  98. setTimeout(function () {
  99. $(".page_banner_mask .btn").animate({"top":"0","opacity":"1"});
  100. }, 1200);
  101. setTimeout(function () {
  102. $(".page_banner_mask .text").animate({"top":"0","opacity":"1"});
  103. }, 1600);
  104. setTimeout(function () {
  105. $(".caseDetail_banner_mask .title").animate({"top":"0","opacity":"1"});
  106. }, 400);
  107. setTimeout(function () {
  108. $(".caseDetail_banner_mask .des").animate({"top":"0","opacity":"1"});
  109. }, 800);
  110. setTimeout(function () {
  111. $(".caseDetail_banner_mask .btn").animate({"top":"0","opacity":"1"});
  112. }, 1200);
  113. }, 0);
  114. var $window = $(window),
  115. win_height_padded = $window.height() * 1.1;
  116. $window.on('scroll', revealOnScroll);
  117. function revealOnScroll() {
  118. var scrolled = $window.scrollTop();
  119. $(".isAnimation:not(.animated)").each(function () {
  120. var $this = $(this),
  121. offsetTop = $this.offset().top;
  122. if (scrolled + win_height_padded > offsetTop) {
  123. if ($this.data('timeout')) {
  124. window.setTimeout(function(){
  125. $this.addClass('animated ' + $this.data('animation'));
  126. $this.removeClass("isAnimation");
  127. }, parseInt($this.data('timeout'),10));
  128. } else {
  129. $this.addClass('animated ' + $this.data('animation'));
  130. $this.removeClass("isAnimation");
  131. }
  132. }
  133. });
  134. }
  135. //banner视差效果
  136. $(window).scroll(function() {
  137. var top = $(window).scrollTop() / 2;
  138. $(".bgimg").css('top', top);
  139. });
  140. $("#side ul .li").hover(function(){
  141. $(this).find(".sidebox").stop().animate({"width":"180px"}).css({"opacity":"1","filter":"Alpha(opacity=100)"});
  142. },function(){
  143. $(this).find(".sidebox").stop().animate({"width":"54px"}).css({"opacity":"0.8","filter":"Alpha(opacity=80)"});
  144. });
  145. $("#side ul .code").hover(function() {
  146. //setTimeout(function() {
  147. $("#side .code_img").stop().fadeIn();
  148. //}, 100)
  149. }, function() {
  150. $("#side .code_img").stop().fadeOut();
  151. })
  152. //回到顶部函数
  153. $("#side .sidetop").click(function(){
  154. $('html,body').animate({'scrollTop':0},300);
  155. });
  156. });