goto.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. $(".banner-slider").slick({
  2. speed: 1000,
  3. swipe: true,
  4. arrows: false,
  5. });
  6. $(".content1-right").slick({
  7. dotsClass: 'slick-dots',
  8. dots: true,
  9. speed: 1000,
  10. arrows: false,
  11. });
  12. // banner輪播效果
  13. // $(".banner-slider").on('beforeChange', function (event, slick, currentSlide, nextSlide) {
  14. // console.log('beforeChangeEvent: currenSlide=' + currentSlide + ', nextSlide= ' + nextSlide);
  15. // if (nextSlide == 1) {
  16. // $("#animation2").addClass("animation-h1");
  17. // $("#btn-animation2").addClass("animation-btn");
  18. // $("#animation1").removeClass("animation-h1");
  19. // $("#btn-animation1").removeClass("animation-btn");
  20. // $("#animation3").removeClass("animation-h1");
  21. // $("#btn-animation3").removeClass("animation-btn");
  22. // }
  23. // else if (nextSlide == 2) {
  24. // $("#animation3").addClass("animation-h1");
  25. // $("#btn-animation3").addClass("animation-btn");
  26. // $("#animation1").removeClass("animation-h1");
  27. // $("#btn-animation1").removeClass("animation-btn");
  28. // $("#animation2").removeClass("animation-h1");
  29. // $("#btn-animation2").removeClass("animation-btn");
  30. // }else if (nextSlide == 0) {
  31. // $("#animation1").addClass("animation-h1");
  32. // $("#btn-animation1").addClass("animation-btn");
  33. // $("#animation2").removeClass("animation-h1");
  34. // $("#btn-animation2").removeClass("animation-btn");
  35. // $("#animation3").removeClass("animation-h1");
  36. // $("#btn-animation3").removeClass("animation-btn");
  37. // }
  38. // });
  39. // content輪播圖片偵測效果
  40. $(".text-1").addClass("contant-toggle");
  41. $(".content1-right").on('beforeChange', function (event, slick, currentSlide, nextSlide) {
  42. console.log('beforeChangeEvent: currenSlide=' + currentSlide + ', nextSlide= ' + nextSlide);
  43. if (nextSlide == 1) {
  44. $(".text-1").removeClass("contant-toggle");
  45. $(".text-2").addClass("contant-toggle");
  46. $(".text-3").removeClass("contant-toggle");
  47. } else if (nextSlide == 2) {
  48. $(".text-2").removeClass("contant-toggle");
  49. $(".text-1").removeClass("contant-toggle");
  50. $(".text-3").addClass("contant-toggle");
  51. } else if (nextSlide == 0) {
  52. $(".text-2").removeClass("contant-toggle");
  53. $(".text-1").addClass("contant-toggle");
  54. $(".text-3").removeClass("contant-toggle");
  55. }
  56. });
  57. // $("#contact-form").submit(function (e) {
  58. // var param_string = $('#contact-form').serialize();
  59. // alert('param_string = ' + param_string);
  60. // $.ajax({
  61. // type: 'POST',
  62. // url: 'http://172.104.93.163/deco_request_detail',
  63. // data: param_string,
  64. // dataType: 'json',
  65. // success: function (data, textStatus, jqXHR) {
  66. // alert("送出成功");
  67. // },
  68. // beforeSend: function () {
  69. // alert("beforeSend");
  70. // },
  71. // complete: function () {
  72. // alert("complete");
  73. // },
  74. // error: function (jqXHR, textStatus, errorThrown) {
  75. // alert("送出失敗");
  76. // }
  77. // });
  78. // return false;
  79. // });
  80. $.fn.serializeObject = function () {
  81. var o = {};
  82. var a = this.serializeArray();
  83. o["id"] = 0;
  84. o["time_stamp"] = "";
  85. $.each(a, function () {
  86. if (o[this.name]) {
  87. if (!o[this.name].push) {
  88. o[this.name] = [o[this.name]];
  89. }
  90. o[this.name].push(this.value || '');
  91. } else {
  92. o[this.name] = this.value || '';
  93. }
  94. });
  95. return o;
  96. };
  97. function onClik() {
  98. /* var formRef = $('#form1').serializeArray();
  99. var jsonString = JSON.stringify(formRef);*/
  100. var jsonInfo = $('.contact-form1').serializeObject();
  101. var jsonString = JSON.stringify(jsonInfo);
  102. alert(jsonString);
  103. console.log(jsonString);
  104. $.ajax({
  105. type: 'POST',
  106. url: 'http://172.105.205.52:8001/deco_request_detail',
  107. data: jsonString,
  108. dataType: 'json',
  109. success: function (data, textStatus, jqXHR) {
  110. alert("送出成功");
  111. },
  112. beforeSend: function () {
  113. alert("beforeSend");
  114. },
  115. complete: function () {
  116. alert("complete");
  117. },
  118. error: function (jqXHR, textStatus, errorThrown) {
  119. alert("送出失敗");
  120. }
  121. });
  122. }
  123. $("*").each(function (index, element) {
  124. // 此元素被點選後執行
  125. $(this).click(function (e) {
  126. // 取得被點選元素的屬性:data-gt-target
  127. var target = $(this).attr("data-gt-target");
  128. var duration = $(this).attr("data-gt-duration");
  129. var offset = $(this).attr("data-gt-offset");
  130. // JS 語法:判斷式
  131. // if (條件) {程式區塊}
  132. // 當條件成立,會執行程式區塊
  133. // 如果 目標有資料 才會執行 { } 內的程式
  134. // 避免出現 undefine (未定義 - 不存在的資料)
  135. if (target) {
  136. //console.log("目標:" + target);
  137. //console.log("時間:" + duration);
  138. //console.log("位移:" + offset);
  139. // 上方位置 = 目標區塊.位移().上方位置
  140. var top = $(target).offset().top;
  141. //console.log("要前往元素的上方位置:" + top);
  142. // 網頁元素.停止().動畫({ 上方捲動:指定元素 - 位移},持續時間)
  143. // parseInt() 將文字轉為數字
  144. $("html").stop().animate({
  145. scrollTop: top - offset
  146. }, parseInt(duration));
  147. }
  148. });
  149. });
  150. // 避免動畫與使用者滾輪衝突
  151. // html 在滾動滾輪時 停止 html 所有效果
  152. $("html").on("mousewheel", function () {
  153. $("html").stop();
  154. });