app.js 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. // JavaScript Document
  2. var data={
  3. win_w:$(window).width(),
  4. win_h:$(window).height(),
  5. Tpage:0,
  6. choosePage:null,
  7. isAni:false
  8. };
  9. var init=function(){
  10. };
  11. $(document).ready(function(){
  12. new alan.scrollAnimate();
  13. init();
  14. indexFn.water();
  15. indexFn.pic_slider();
  16. indexFn.new_list();
  17. indexFn.new_box();
  18. // indexFn.pro_box();
  19. });
  20. window.onload=function () {
  21. $('[data-hei]').each(function(index,e){
  22. var wid=$(this).width(),
  23. hei=parseInt(wid*($(this).attr('data-hei')));
  24. $(this).css('height',hei+"px");
  25. });
  26. }
  27. $(window).resize(function() {
  28. $('[data-hei]').each(function(){
  29. var wid=$(this).width(),
  30. hei=parseInt(wid*($(this).attr('data-hei')));
  31. $(this).css('height',hei+"px");
  32. });
  33. });
  34. var indexFn = {
  35. water : function () {
  36. var cv = document.getElementById('water');
  37. var ctx = cv.getContext('2d');
  38. window.requestAnimFrame = (function(){
  39. return window.requestAnimationFrame ||
  40. window.webkitRequestAnimationFrame ||
  41. window.mozRequestAnimationFrame ||
  42. function( callback ){
  43. window.setTimeout(callback, 1000 / 60);
  44. };
  45. })();
  46. var step =0;
  47. var bowidth = cv.width/5;
  48. var poswidth = cv.width/1.2;
  49. var a = ctx.createLinearGradient(0,0,0,cv.height);
  50. a.addColorStop(0,'#79bd28');
  51. a.addColorStop(1,'#00653b');
  52. function loop () {
  53. ctx.clearRect(0,0,cv.width,cv.height);
  54. step++;
  55. ctx.fillStyle = a;
  56. var angle = step*Math.PI/180;
  57. var deltaHeight = Math.sin(angle) * bowidth;
  58. var deltaHeightRight = Math.cos(angle) * bowidth;
  59. ctx.beginPath();
  60. ctx.moveTo(poswidth,0);
  61. ctx.bezierCurveTo(poswidth+deltaHeight,cv.height/2,poswidth+deltaHeightRight,cv.height/2,poswidth,cv.height);
  62. ctx.lineTo(0, cv.height);
  63. ctx.lineTo(0, 0);
  64. ctx.lineTo(poswidth,0);
  65. ctx.closePath();
  66. ctx.fill();
  67. requestAnimFrame(loop);
  68. }
  69. loop();
  70. },
  71. pic_slider : function () {
  72. var slider = function (opts) {
  73. var box = opts.parent,
  74. list = box.find('li'),
  75. txt_box = opts.txt_box,
  76. txt_list = txt_box.find('li'),
  77. page_box = opts.page_box,
  78. page_list = page_box.find('li'),
  79. isAni = false,
  80. cur = 0;
  81. page_list.on('click',function () {
  82. if(isAni) return false;
  83. isAni = true;
  84. var _this = $(this),
  85. index = _this.index();
  86. if(index == cur){
  87. isAni = false;
  88. return false;
  89. }
  90. list.eq(cur).addClass('move').removeClass('on');
  91. list.eq(index).addClass('cur_move');
  92. txt_list.eq(index).addClass('move').siblings().removeClass('on');
  93. setTimeout(function () {
  94. list.eq(cur).removeClass('move');
  95. list.eq(index).addClass('on').removeClass('cur_move');
  96. for(var n =1;n<=(page_list.length-1);n++){
  97. var num = index+n;
  98. var rang = num - page_list.length;
  99. num = num < page_list.length - 1 ? num : (0+rang);
  100. if(n==1){
  101. list.eq(num).addClass('n1').siblings().removeClass('n1');
  102. }
  103. if(n==2){
  104. list.eq(num).addClass('n2').siblings().removeClass('n2');
  105. }
  106. }
  107. cur = index;
  108. },700);
  109. setTimeout(function () {
  110. txt_list.eq(index).addClass('on').removeClass('move');
  111. isAni = false;
  112. },1200);
  113. _this.addClass('on').siblings().removeClass('on');
  114. });
  115. };
  116. $('.pro-slider').each(function () {
  117. var _this = $(this),
  118. txt = _this.parents('.home-pro-list').find('.msg-box'),
  119. page = $('#'+$(this).attr('data-slide'));
  120. new slider({
  121. parent:_this,
  122. page_box: page,
  123. txt_box : txt
  124. })
  125. });
  126. },
  127. new_list :function () {
  128. var slider = function (opts) {
  129. var box = opts.parent,
  130. item = opts.items,
  131. pic_item = opts.pic_item;
  132. item.find('li').on('mouseenter',function () {
  133. var _this = $(this),
  134. index = _this.index();
  135. pic_item.find('.pic-list').eq(index).addClass('on').siblings().removeClass('on');
  136. });
  137. };
  138. $('.new-list').each(function () {
  139. var el = $(this),
  140. item = el.find('.new-item'),
  141. pic_item = el.find('.pic-item');
  142. new slider({
  143. parent : el,
  144. items : item,
  145. pic_item : pic_item
  146. });
  147. });
  148. },
  149. new_box : function () {
  150. var tab = function (opts) {
  151. var box = opts.box,
  152. isAni = false,
  153. _tab = box.find('.new-tab'),
  154. item = box.find('.new-list'),
  155. list = _tab.find('li'),
  156. prev = _tab.find('.n-prev'),
  157. next = _tab.find('.n-next'),
  158. cur = 0,
  159. length = list.length - 1;
  160. prev.addClass('v-hide');
  161. prev.on('click',function () {
  162. swiper_go(cur,'prev');
  163. });
  164. next.on('click',function () {
  165. swiper_go(cur,'next');
  166. });
  167. list.on('click',function () {
  168. var num = $(this).attr('data-cur');
  169. swiper_go(num,'num');
  170. });
  171. function swiper_go(index,type) {
  172. if(isAni) return false;
  173. isAni = true;
  174. var left = 0;
  175. if(type == 'prev'){
  176. cur = index>0 ? (index-1) : length;
  177. }
  178. if(type == 'next'){
  179. cur = index<length ? (index+1) : 0;
  180. }
  181. if(type == 'num'){
  182. cur = index;
  183. }
  184. if(cur==0){
  185. prev.addClass('v-hide');
  186. }else{
  187. prev.removeClass('v-hide');
  188. }
  189. if(cur==length){
  190. next.addClass('v-hide');
  191. }else{
  192. next.removeClass('v-hide');
  193. }
  194. list.eq(cur).addClass('on').siblings().removeClass('on');
  195. item.eq(cur).show().siblings('.new-list').hide();
  196. setTimeout(function () {
  197. isAni = false;
  198. },100);
  199. }
  200. }
  201. $('.new-box').each(function () {
  202. var el = $(this);
  203. new tab({
  204. box : el
  205. });
  206. });
  207. },
  208. pro_box : function () {
  209. var tabs = function (opts) {
  210. var box = opts.box,
  211. isAni = false,
  212. _tab = opts.tab,
  213. item = _tab.find('.home-pro-list'),
  214. list = box.find('li'),
  215. href = box.find('.type-more'),
  216. cur = 0,
  217. length = list.length - 1;
  218. var url = list.eq(0).attr('data-url');
  219. href.attr('href',url);
  220. list.on('click',function () {
  221. var num = $(this).attr('data-cur');
  222. var url = $(this).attr('data-url');
  223. href.attr('href',url);
  224. swiper_go(num,'num');
  225. });
  226. function swiper_go(index,type) {
  227. if(isAni) return false;
  228. isAni = true;
  229. var left = 0;
  230. if(type == 'prev'){
  231. cur = index>0 ? (index-1) : length;
  232. }
  233. if(type == 'next'){
  234. cur = index<length ? (index+1) : 0;
  235. }
  236. if(type == 'num'){
  237. cur = index;
  238. }
  239. list.eq(cur).addClass('on').siblings('li').removeClass('on');
  240. item.eq(cur).addClass('on').siblings().removeClass('on');
  241. setTimeout(function () {
  242. isAni = false;
  243. },100);
  244. }
  245. }
  246. $('.pro-tab').each(function () {
  247. var el = $(this),
  248. pros = $(this).prevAll('.home-pro');
  249. new tabs({
  250. box : el,
  251. tab : pros
  252. });
  253. });
  254. }
  255. };