goto.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. $(".banner-slider").slick({
  2. speed: 1000,
  3. swipe: true,
  4. });
  5. $(".content1-right").slick({
  6. dotsClass: 'slick-dots',
  7. dots: true,
  8. speed: 1000,
  9. swipe: true,
  10. });
  11. // banner輪播效果
  12. // $(".banner-slider").on('beforeChange', function (event, slick, currentSlide, nextSlide) {
  13. // console.log('beforeChangeEvent: currenSlide=' + currentSlide + ', nextSlide= ' + nextSlide);
  14. // if (nextSlide == 1) {
  15. // $("#animation2").addClass("animation-h1");
  16. // $("#btn-animation2").addClass("animation-btn");
  17. // $("#animation1").removeClass("animation-h1");
  18. // $("#btn-animation1").removeClass("animation-btn");
  19. // $("#animation3").removeClass("animation-h1");
  20. // $("#btn-animation3").removeClass("animation-btn");
  21. // }
  22. // else if (nextSlide == 2) {
  23. // $("#animation3").addClass("animation-h1");
  24. // $("#btn-animation3").addClass("animation-btn");
  25. // $("#animation1").removeClass("animation-h1");
  26. // $("#btn-animation1").removeClass("animation-btn");
  27. // $("#animation2").removeClass("animation-h1");
  28. // $("#btn-animation2").removeClass("animation-btn");
  29. // }else if (nextSlide == 0) {
  30. // $("#animation1").addClass("animation-h1");
  31. // $("#btn-animation1").addClass("animation-btn");
  32. // $("#animation2").removeClass("animation-h1");
  33. // $("#btn-animation2").removeClass("animation-btn");
  34. // $("#animation3").removeClass("animation-h1");
  35. // $("#btn-animation3").removeClass("animation-btn");
  36. // }
  37. // });
  38. // content輪播圖片偵測效果
  39. $(".text-1").addClass("contant-toggle");
  40. $(".content1-right").on('beforeChange', function (event, slick, currentSlide, nextSlide) {
  41. console.log('beforeChangeEvent: currenSlide=' + currentSlide + ', nextSlide= ' + nextSlide);
  42. if (nextSlide == 1) {
  43. $(".text-1").removeClass("contant-toggle");
  44. $(".text-2").addClass("contant-toggle");
  45. $(".text-3").removeClass("contant-toggle");
  46. } else if (nextSlide == 2) {
  47. $(".text-2").removeClass("contant-toggle");
  48. $(".text-1").removeClass("contant-toggle");
  49. $(".text-3").addClass("contant-toggle");
  50. } else if (nextSlide == 0) {
  51. $(".text-2").removeClass("contant-toggle");
  52. $(".text-1").addClass("contant-toggle");
  53. $(".text-3").removeClass("contant-toggle");
  54. }
  55. });
  56. $("#contact-form").submit(function (e) {
  57. var param_string = $('#contact-form').serialize();
  58. alert('param_string = ' + param_string);
  59. $.ajax({
  60. type: 'GET',
  61. url: 'http://172.104.93.163/deco_request_detail',
  62. data: param_string,
  63. dataType: 'json',
  64. success: function (data, textStatus, jqXHR) {
  65. alert("送出成功");
  66. },
  67. beforeSend: function () {
  68. alert("beforeSend");
  69. },
  70. complete: function () {
  71. alert("complete");
  72. },
  73. error: function (jqXHR, textStatus, errorThrown) {
  74. alert("送出失敗");
  75. }
  76. });
  77. return false;
  78. });
  79. $("*").each(function (index, element) {
  80. // 此元素被點選後執行
  81. $(this).click(function (e) {
  82. // 取得被點選元素的屬性:data-gt-target
  83. var target = $(this).attr("data-gt-target");
  84. var duration = $(this).attr("data-gt-duration");
  85. var offset = $(this).attr("data-gt-offset");
  86. // JS 語法:判斷式
  87. // if (條件) {程式區塊}
  88. // 當條件成立,會執行程式區塊
  89. // 如果 目標有資料 才會執行 { } 內的程式
  90. // 避免出現 undefine (未定義 - 不存在的資料)
  91. if (target) {
  92. //console.log("目標:" + target);
  93. //console.log("時間:" + duration);
  94. //console.log("位移:" + offset);
  95. // 上方位置 = 目標區塊.位移().上方位置
  96. var top = $(target).offset().top;
  97. //console.log("要前往元素的上方位置:" + top);
  98. // 網頁元素.停止().動畫({ 上方捲動:指定元素 - 位移},持續時間)
  99. // parseInt() 將文字轉為數字
  100. $("html").stop().animate({
  101. scrollTop: top - offset
  102. }, parseInt(duration));
  103. }
  104. });
  105. });
  106. // 避免動畫與使用者滾輪衝突
  107. // html 在滾動滾輪時 停止 html 所有效果
  108. $("html").on("mousewheel", function () {
  109. $("html").stop();
  110. });