goto.js 4.5 KB

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