goto.js 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. // menu彈跳視窗
  2. $("#menu-box2").hide();
  3. $("#menu-box").hide();
  4. $("#menu-btn1").click(function () {
  5. $("#menu-box").fadeToggle("slow");
  6. $("#menu-box2").slideToggle("slow");
  7. });
  8. $(".feedback-slider1").slick({
  9. dots: true,
  10. dotsClass: 'slick-dots',
  11. speed: 1000,
  12. swipe: true,
  13. });
  14. $(".banner-slider").slick({
  15. dots: true,
  16. dotsClass: 'slick-dots',
  17. speed: 1000,
  18. swipe: true,
  19. });
  20. $(".link").click(function () {
  21. $("#menu-box2").fadeOut("slow", function () {
  22. // Animation complete.
  23. });
  24. });
  25. $.fn.serializeObject = function () {
  26. var o = {};
  27. var a = this.serializeArray();
  28. o["id"] = 0;
  29. o["time_stamp"] = "";
  30. $.each(a, function () {
  31. if (o[this.name]) {
  32. if (!o[this.name].push) {
  33. o[this.name] = [o[this.name]];
  34. }
  35. o[this.name].push(this.value || '');
  36. } else {
  37. o[this.name] = this.value || '';
  38. }
  39. });
  40. return o;
  41. };
  42. // email 格式檢查
  43. $(document).ready(function () {
  44. //E-MAIL格式檢查
  45. $("body").on("change", "#email", function () {
  46. $Emailchecking = IsEmail($("#email").val());
  47. if ($Emailchecking == false) {
  48. alert("請填寫正確的E-MAIL格式");
  49. // $("#email").blur(); //離開焦點
  50. }
  51. })
  52. function IsEmail(email) {
  53. var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
  54. if (!regex.test(email)) {
  55. return false;
  56. } else {
  57. return true;
  58. }
  59. }
  60. });
  61. // phone 格式檢查
  62. $(document).ready(function () {
  63. //phone格式檢查
  64. $("body").on("change", "#phone", function () {
  65. $Phonechecking = IsPhone($("#phone").val());
  66. if ($Phonechecking == false) {
  67. alert("請填寫正確的手機格式");
  68. // $("#email").blur(); //離開焦點
  69. }
  70. })
  71. function IsPhone(phone) {
  72. var regex = /^[0-9]+$/;
  73. if (!regex.test(phone)) {
  74. return false;
  75. } else {
  76. return true;
  77. }
  78. }
  79. });
  80. $(".contact-form1").submit(function (e) {
  81. /* var formRef = $('#form1').serializeArray();
  82. var jsonString = JSON.stringify(formRef);*/
  83. var jsonInfo = $('.contact-form1').serializeObject();
  84. var jsonString = JSON.stringify(jsonInfo);
  85. $.ajax({
  86. type: 'POST',
  87. url: 'https://go.hhh.com.tw:8001/deco_request_detail',
  88. data: jsonString,
  89. dataType: 'json',
  90. success: function (data) {
  91. console.log('送出成功: ' + data);
  92. if (data == 0) {
  93. alert("送出成功");
  94. } else if (data == 1) {
  95. alert("此email已填過表單");
  96. } else if (data == 2) {
  97. alert("此phone已填過表單");
  98. } else if (data == 3) {
  99. alert("此email、phone已填過表單");
  100. }
  101. },
  102. beforeSend: function () {
  103. console.log('beforeSend');
  104. },
  105. complete: function () {
  106. console.log('complete');
  107. },
  108. error: function (jqXHR, textStatus, errorThrown) {
  109. console.log(JSON.stringify(jqXHR));
  110. console.log("AJAX errr: " + textStatus + ' : ' + errorThrown);
  111. console.log('送出失敗: ' + jqXHR.responseText);
  112. }
  113. });
  114. return false;
  115. });
  116. $("*").each(function (index, element) {
  117. // 此元素被點選後執行
  118. $(this).click(function (e) {
  119. // 取得被點選元素的屬性:data-gt-target
  120. var target = $(this).attr("data-gt-target");
  121. var duration = $(this).attr("data-gt-duration");
  122. var offset = $(this).attr("data-gt-offset");
  123. // JS 語法:判斷式
  124. // if (條件) {程式區塊}
  125. // 當條件成立,會執行程式區塊
  126. // 如果 目標有資料 才會執行 { } 內的程式
  127. // 避免出現 undefine (未定義 - 不存在的資料)
  128. if (target) {
  129. //console.log("目標:" + target);
  130. //console.log("時間:" + duration);
  131. //console.log("位移:" + offset);
  132. // 上方位置 = 目標區塊.位移().上方位置
  133. var top = $(target).offset().top;
  134. //console.log("要前往元素的上方位置:" + top);
  135. // 網頁元素.停止().動畫({ 上方捲動:指定元素 - 位移},持續時間)
  136. // parseInt() 將文字轉為數字
  137. $("html").stop().animate({
  138. scrollTop: top - offset
  139. }, parseInt(duration));
  140. }
  141. });
  142. });
  143. // 避免動畫與使用者滾輪衝突
  144. // html 在滾動滾輪時 停止 html 所有效果
  145. $("html").on("mousewheel", function () {
  146. $("html").stop();
  147. });