goto.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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. window.fbAsyncInit = function () {
  166. FB.init({
  167. appId: '1388696554848391', // 填入 FB APP ID
  168. cookie: true,
  169. xfbml: true,
  170. version: 'v11.0'
  171. });
  172. FB.getLoginStatus(function (response) {
  173. statusChangeCallback(response);
  174. });
  175. };
  176. // 處理各種登入身份
  177. function statusChangeCallback(response) {
  178. console.log(response);
  179. var target = document.getElementById("FB_STATUS_2"),
  180. html = "";
  181. // 登入 FB 且已加入會員
  182. if (response.status === 'connected') {
  183. html = "已登入 FB,並加入 WFU BLOG DEMO 應用程式<br/>";
  184. FB.api('/me?fields=id,name,email', function (response) {
  185. console.log('FB API回傳資料: ' + JSON.stringify(response));
  186. if (response.id) {
  187. // 設定欄位預設值
  188. document.getElementById("email").value = response.email;
  189. document.getElementById("name").value = response.name;
  190. // 隱藏FB登入按鈕
  191. document.getElementById("fb_login").style.display = 'none';
  192. }
  193. });
  194. }
  195. // 登入 FB, 未偵測到加入會員
  196. else if (response.status === "not_authorized") {
  197. target.innerHTML = "已登入 FB,但未加入 WFU BLOG DEMO 應用程式";
  198. }
  199. // 未登入 FB
  200. // else {
  201. // target.innerHTML = "未登入 FB";
  202. // }
  203. }
  204. // 點擊登入
  205. $("#fb_login").click(function () {
  206. // 進行登入程序
  207. FB.login(function (response) {
  208. statusChangeCallback(response);
  209. }, {
  210. scope: 'public_profile,email'
  211. },
  212. );
  213. });
  214. // 點擊登出
  215. // $("#FB_logout").click(function() {
  216. // FB.logout(function(response) {
  217. // statusChangeCallback(response);
  218. // });
  219. // });
  220. // 載入 FB SDK
  221. (function (d, s, id) {
  222. var js, fjs = d.getElementsByTagName(s)[0];
  223. if (d.getElementById(id)) return;
  224. js = d.createElement(s);
  225. js.id = id;
  226. js.src = "https://connect.facebook.net/zh_TW/sdk.js";
  227. fjs.parentNode.insertBefore(js, fjs);
  228. }(document, 'script', 'facebook-jssdk'));