goto.js 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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. arrows: false,
  20. });
  21. $(".banner-slider").slick({
  22. dots: true,
  23. dotsClass: 'slick-dots',
  24. speed: 1000,
  25. swipe: true,
  26. });
  27. $.fn.serializeObject = function () {
  28. var o = {};
  29. var a = this.serializeArray();
  30. o["id"] = 0;
  31. o["time_stamp"] = "";
  32. $.each(a, function () {
  33. if (o[this.name]) {
  34. if (!o[this.name].push) {
  35. o[this.name] = [o[this.name]];
  36. }
  37. o[this.name].push(this.value || '');
  38. } else {
  39. o[this.name] = this.value || '';
  40. }
  41. });
  42. return o;
  43. };
  44. // email 格式檢查
  45. $(document).ready(function () {
  46. //E-MAIL格式檢查
  47. $("body").on("change", "#email", function () {
  48. $Emailchecking = IsEmail($("#email").val());
  49. if ($Emailchecking == false) {
  50. alert("請填寫正確的E-MAIL格式");
  51. // $("#email").blur(); //離開焦點
  52. }
  53. })
  54. function IsEmail(email) {
  55. var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
  56. if (!regex.test(email)) {
  57. return false;
  58. } else {
  59. return true;
  60. }
  61. }
  62. });
  63. // phone 格式檢查
  64. $(document).ready(function () {
  65. //phone格式檢查
  66. $("body").on("change", "#phone", function () {
  67. $Phonechecking = IsPhone($("#phone").val());
  68. if ($Phonechecking == false) {
  69. alert("請填寫正確的手機格式");
  70. // $("#email").blur(); //離開焦點
  71. }
  72. })
  73. function IsPhone(phone) {
  74. var regex = /^[09]{2}[0-9]{8}$/;
  75. if (!regex.test(phone)) {
  76. return false;
  77. } else {
  78. return true;
  79. }
  80. }
  81. });
  82. $(".contact-form1").submit(function (e) {
  83. /* var formRef = $('#form1').serializeArray();
  84. var jsonString = JSON.stringify(formRef);*/
  85. var jsonInfo = $('.contact-form1').serializeObject();
  86. var jsonString = JSON.stringify(jsonInfo);
  87. console.log(jsonString);
  88. $.ajax({
  89. type: 'POST',
  90. url: 'https://go.hhh.com.tw:8001/deco_request_detail',
  91. data: jsonString,
  92. dataType: 'json',
  93. success: function (data) {
  94. console.log('送出成功: ' + data);
  95. if (data == 0) {
  96. alert("送出成功");
  97. } else if (data == 1) {
  98. alert("此email已填過表單");
  99. } else if (data == 2) {
  100. alert("此phone已填過表單");
  101. } else if (data == 3) {
  102. alert("此email、phone已填過表單");
  103. }
  104. location.reload();
  105. },
  106. beforeSend: function () {
  107. console.log('beforeSend');
  108. },
  109. complete: function () {
  110. console.log('complete');
  111. },
  112. error: function (jqXHR, textStatus, errorThrown) {
  113. console.log(JSON.stringify(jqXHR));
  114. console.log("AJAX errr: " + textStatus + ' : ' + errorThrown);
  115. console.log('送出失敗: ' + jqXHR.responseText);
  116. }
  117. });
  118. return false;
  119. });
  120. $("*").each(function (index, element) {
  121. // 此元素被點選後執行
  122. $(this).click(function (e) {
  123. // 取得被點選元素的屬性:data-gt-target
  124. var target = $(this).attr("data-gt-target");
  125. var duration = $(this).attr("data-gt-duration");
  126. var offset = $(this).attr("data-gt-offset");
  127. // JS 語法:判斷式
  128. // if (條件) {程式區塊}
  129. // 當條件成立,會執行程式區塊
  130. // 如果 目標有資料 才會執行 { } 內的程式
  131. // 避免出現 undefine (未定義 - 不存在的資料)
  132. if (target) {
  133. //console.log("目標:" + target);
  134. //console.log("時間:" + duration);
  135. //console.log("位移:" + offset);
  136. // 上方位置 = 目標區塊.位移().上方位置
  137. var top = $(target).offset().top;
  138. //console.log("要前往元素的上方位置:" + top);
  139. // 網頁元素.停止().動畫({ 上方捲動:指定元素 - 位移},持續時間)
  140. // parseInt() 將文字轉為數字
  141. $("html").stop().animate({
  142. scrollTop: top - offset
  143. }, parseInt(duration));
  144. }
  145. });
  146. });
  147. // 避免動畫與使用者滾輪衝突
  148. // html 在滾動滾輪時 停止 html 所有效果
  149. $("html").on("mousewheel", function () {
  150. $("html").stop();
  151. });
  152. $(document).ready(function () {
  153. $("#date").datepicker();
  154. });
  155. // // gototop 下滑效果
  156. $(".arrow").hide();
  157. $(window).scroll(function(){
  158. var y = window.scrollY;
  159. if(y>10){
  160. $(".arrow").show();
  161. }else{
  162. $(".arrow").hide();
  163. }
  164. });
  165. // function statusChangeCallback(response) {
  166. // console.log('statusChangeCallback');
  167. // console.log(response);
  168. // // The response object is returned with a status field that lets the
  169. // // app know the current login status of the persopren.
  170. // // Full docs on the response object can be found in the documentation
  171. // // for FB.getLoginStatus().
  172. // if (response.status === 'connected') {
  173. // // Logged into your app and Facebook.
  174. // login(response.authResponse.accessToken);
  175. // } else if (response.status === 'not_authorized') {
  176. // // The person is logged into Facebook, but not your app.
  177. // console.log('The person is logged into Facebook, but not your app');
  178. // } else {
  179. // // The person is not logged into Facebook, so we're not sure if
  180. // // they are logged into this app or not.
  181. // console.log("The person is not logged into Facebook");
  182. // }
  183. // }
  184. // // This function is called when someone finishes with the Login
  185. // // Button. See the onlogin handler attached to it in the sample
  186. // // code below.
  187. // function checkLoginState() {
  188. // FB.getLoginStatus(function (response) {
  189. // statusChangeCallback(response);
  190. // });
  191. // }
  192. // window.fbAsyncInit = function () {
  193. // FB.init({
  194. // appId: '1388696554848391',
  195. // cookie: true, // enable cookies to allow the server to access
  196. // // the session
  197. // xfbml: true, // parse social plugins on this page
  198. // version: 'v11.0' // use version 2.2
  199. // });
  200. // };
  201. // // Now that we've initialized the JavaScript SDK, we call
  202. // // FB.getLoginStatus(). This function gets the state of the
  203. // // person visiting this page and can return one of three states to
  204. // // the callback you provide. They can be:
  205. // //
  206. // // 1. Logged into your app ('connected')
  207. // // 2. Logged into Facebook, but not your app ('not_authorized')
  208. // // 3. Not logged into Facebook and can't tell if they are logged into
  209. // // your app or not.
  210. // //
  211. // // These three cases are handled in the callback function.
  212. // // Load the SDK asynchronously
  213. // (function (d, s, id) {
  214. // var js, fjs = d.getElementsByTagName(s)[0];
  215. // if (d.getElementById(id)) return;
  216. // js = d.createElement(s); js.id = id;
  217. // js.src = "//connect.facebook.net/en_US/sdk.js";
  218. // fjs.parentNode.insertBefore(js, fjs);
  219. // }(document, "script", "facebook-jssdk"));
  220. // // Here we run a very simple test of the Graph API after login is
  221. // // successful. See statusChangeCallback() for when this call is made.
  222. // function loginNEMI(token) {
  223. // // 把 access_token 傳至後端再做資料拿取
  224. // console.log("Welcome! Fetching your information.... ");
  225. // var xhr = new XMLHttpRequest();
  226. // xhr.open("POST", "/login", true);
  227. // xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  228. // xhr.onreadystatechange = function () {
  229. // if (xhr.readyState === 4 && xhr.status === 200) {
  230. // if (JSON.parse(xhr.responseText).status === "ok")
  231. // location.href = "/index";
  232. // else
  233. // alert("something wrong!");
  234. // }
  235. // };
  236. // xhr.send("token=" + token);
  237. // }
  238. // // custom fb login button
  239. // function fb_login() {
  240. // // FB 第三方登入,要求公開資料與email
  241. // FB.login(function (response) {
  242. // statusChangeCallback(response);
  243. // console.log(response);
  244. // }, { scope: 'public_profile,email' });
  245. // }