goto.js 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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 = /^[0-9]+$/;
  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. },
  105. beforeSend: function () {
  106. console.log('beforeSend');
  107. },
  108. complete: function () {
  109. console.log('complete');
  110. },
  111. error: function (jqXHR, textStatus, errorThrown) {
  112. console.log(JSON.stringify(jqXHR));
  113. console.log("AJAX errr: " + textStatus + ' : ' + errorThrown);
  114. console.log('送出失敗: ' + jqXHR.responseText);
  115. }
  116. });
  117. return false;
  118. });
  119. $("*").each(function (index, element) {
  120. // 此元素被點選後執行
  121. $(this).click(function (e) {
  122. // 取得被點選元素的屬性:data-gt-target
  123. var target = $(this).attr("data-gt-target");
  124. var duration = $(this).attr("data-gt-duration");
  125. var offset = $(this).attr("data-gt-offset");
  126. // JS 語法:判斷式
  127. // if (條件) {程式區塊}
  128. // 當條件成立,會執行程式區塊
  129. // 如果 目標有資料 才會執行 { } 內的程式
  130. // 避免出現 undefine (未定義 - 不存在的資料)
  131. if (target) {
  132. //console.log("目標:" + target);
  133. //console.log("時間:" + duration);
  134. //console.log("位移:" + offset);
  135. // 上方位置 = 目標區塊.位移().上方位置
  136. var top = $(target).offset().top;
  137. //console.log("要前往元素的上方位置:" + top);
  138. // 網頁元素.停止().動畫({ 上方捲動:指定元素 - 位移},持續時間)
  139. // parseInt() 將文字轉為數字
  140. $("html").stop().animate({
  141. scrollTop: top - offset
  142. }, parseInt(duration));
  143. }
  144. });
  145. });
  146. // 避免動畫與使用者滾輪衝突
  147. // html 在滾動滾輪時 停止 html 所有效果
  148. $("html").on("mousewheel", function () {
  149. $("html").stop();
  150. });
  151. $(document).ready(function () {
  152. $("#date").datepicker();
  153. });
  154. // // gototop 下滑效果
  155. $(".arrow").hide();
  156. $(window).scroll(function(){
  157. var y = window.scrollY;
  158. if(y>10){
  159. $(".arrow").show();
  160. }else{
  161. $(".arrow").hide();
  162. }
  163. });
  164. function statusChangeCallback(response) {
  165. console.log('statusChangeCallback');
  166. console.log(response);
  167. // The response object is returned with a status field that lets the
  168. // app know the current login status of the persopren.
  169. // Full docs on the response object can be found in the documentation
  170. // for FB.getLoginStatus().
  171. if (response.status === 'connected') {
  172. // Logged into your app and Facebook.
  173. login(response.authResponse.accessToken);
  174. } else if (response.status === 'not_authorized') {
  175. // The person is logged into Facebook, but not your app.
  176. console.log('The person is logged into Facebook, but not your app');
  177. } else {
  178. // The person is not logged into Facebook, so we're not sure if
  179. // they are logged into this app or not.
  180. console.log("The person is not logged into Facebook");
  181. }
  182. }
  183. // This function is called when someone finishes with the Login
  184. // Button. See the onlogin handler attached to it in the sample
  185. // code below.
  186. function checkLoginState() {
  187. FB.getLoginStatus(function (response) {
  188. statusChangeCallback(response);
  189. });
  190. }
  191. window.fbAsyncInit = function () {
  192. FB.init({
  193. appId: '1388696554848391',
  194. cookie: true, // enable cookies to allow the server to access
  195. // the session
  196. xfbml: true, // parse social plugins on this page
  197. version: 'v11.0' // use version 2.2
  198. });
  199. };
  200. // Now that we've initialized the JavaScript SDK, we call
  201. // FB.getLoginStatus(). This function gets the state of the
  202. // person visiting this page and can return one of three states to
  203. // the callback you provide. They can be:
  204. //
  205. // 1. Logged into your app ('connected')
  206. // 2. Logged into Facebook, but not your app ('not_authorized')
  207. // 3. Not logged into Facebook and can't tell if they are logged into
  208. // your app or not.
  209. //
  210. // These three cases are handled in the callback function.
  211. // Load the SDK asynchronously
  212. (function (d, s, id) {
  213. var js, fjs = d.getElementsByTagName(s)[0];
  214. if (d.getElementById(id)) return;
  215. js = d.createElement(s); js.id = id;
  216. js.src = "//connect.facebook.net/en_US/sdk.js";
  217. fjs.parentNode.insertBefore(js, fjs);
  218. }(document, "script", "facebook-jssdk"));
  219. // Here we run a very simple test of the Graph API after login is
  220. // successful. See statusChangeCallback() for when this call is made.
  221. function loginNEMI(token) {
  222. // 把 access_token 傳至後端再做資料拿取
  223. console.log("Welcome! Fetching your information.... ");
  224. var xhr = new XMLHttpRequest();
  225. xhr.open("POST", "/login", true);
  226. xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  227. xhr.onreadystatechange = function () {
  228. if (xhr.readyState === 4 && xhr.status === 200) {
  229. if (JSON.parse(xhr.responseText).status === "ok")
  230. location.href = "/index";
  231. else
  232. alert("something wrong!");
  233. }
  234. };
  235. xhr.send("token=" + token);
  236. }
  237. // custom fb login button
  238. function fb_login() {
  239. // FB 第三方登入,要求公開資料與email
  240. FB.login(function (response) {
  241. statusChangeCallback(response);
  242. console.log(response);
  243. }, { scope: 'public_profile,email' });
  244. }