huaisianhuang 3 gadi atpakaļ
vecāks
revīzija
3f27bf0dcc
3 mainītis faili ar 16 papildinājumiem un 3 dzēšanām
  1. 2 1
      css/style.css
  2. 13 2
      js/scripts.js
  3. 1 0
      scss/main.scss

+ 2 - 1
css/style.css

@@ -48,7 +48,8 @@ body {
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
-    transform: scale(1.4); }
+    transform: scale(1.4);
+    position: relative; }
     @media screen and (max-width: 576px) {
       .header__logo {
         background-image: url(../images/Logo@2x.webp);

+ 13 - 2
js/scripts.js

@@ -66,7 +66,12 @@ $(".next").click(function(){
 
 	if(animating) return false;
 	animating = true;
-	
+	$("html,body").animate(
+		{
+			scrollTop: $(".personal__box").offset().top
+		},
+		0
+	);
 	current_fs = $(this).parent();
 	next_fs = $(this).parent().next();
 	
@@ -105,6 +110,12 @@ $(".previous").click(function(){
 	if(animating) return false;
 	animating = true;
 	
+	$("html,body").animate(
+		{
+			scrollTop: $(".personal__box").offset().top
+		},
+		0
+	);
 	current_fs = $(this).parent();
 	previous_fs = $(this).parent().prev();
 	
@@ -154,7 +165,7 @@ $("input[name=submit]").click(function(){
 		$('#term-error').text('');
 	}
 	if(stop == 0) {
-		alert("送出成功"); 
+		alert("我們已將5萬裝修折價券寄至您所填寫的電子信箱,請確認電子信箱,謝謝!"); 
 	}
 });
 

+ 1 - 0
scss/main.scss

@@ -56,6 +56,7 @@ body {
         background-position: center;
         background-size: cover;
         transform: scale(1.4);
+        position: relative;
         @media screen and(max-width: 576px) {
             background-image: url(../images/Logo@2x.webp);
             transform: scale(1);