Browse Source

set scroll offset on booking page

staging
azri 1 month ago
parent
commit
d60e74354f

+ 5
- 1
public/js/main.js View File

@@ -11040,7 +11040,11 @@ $(document).ready(function () {
11040 11040
     resetField();
11041 11041
     $("#select-location").children("#default-input-select-location").remove();
11042 11042
     setTimeout(function () {
11043
-      document.getElementById("field-location-container").scrollIntoView();
11043
+      document.getElementById("field-location-container").scrollIntoView({
11044
+        behavior: "smooth",
11045
+        block: "end",
11046
+        inline: "end"
11047
+      });
11044 11048
     }, 300);
11045 11049
     if (this.value !== "default") {
11046 11050
       var _JSON$parse = JSON.parse(this.value),

+ 1
- 1
resources/js/main.js View File

@@ -106,7 +106,7 @@ $(document).ready(function () {
106 106
         $("#select-location").children("#default-input-select-location").remove()
107 107
 
108 108
         setTimeout(() => {
109
-            document.getElementById("field-location-container").scrollIntoView();
109
+            document.getElementById("field-location-container").scrollIntoView({ behavior: "smooth", block: "end", inline: "end" });
110 110
         }, 300);
111 111
 
112 112
 

+ 2
- 2
resources/views/booking.antlers.html View File

@@ -63,8 +63,8 @@
63 63
 <section>
64 64
     <div class="text-light section-8" style="background-image: url(./assets/image/dbparticle3.png);">
65 65
         <div data-aos="zoom-in" class="text-center ">
66
-            <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Our Mobile Apps Is Coming Soon!</p>
67
-            <p class="mx-auto p-0 db-h5 mb-5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Soon all of the amazing features that we provide here will be available in<br/> an exclusive app for both android and iOS.</p>
66
+            <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Our Mobile Apps Is Now Available!</p>
67
+            <p class="mx-auto p-0 db-h5 mb-5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Download the app for bookings and other important notifications in<br/> an exclusive app for both android and iOS.</p>
68 68
         </div>
69 69
 
70 70
         {{ partial:partials/appsdownload }}

+ 2
- 2
resources/views/home.antlers.html View File

@@ -100,8 +100,8 @@
100 100
 <section>
101 101
     <div class="text-light section-8" style="background-image: url(./assets/image/dbparticle3.png);">
102 102
         <div data-aos="zoom-in" class="text-center ">
103
-            <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Our Mobile Apps Is Coming Soon!</p>
104
-            <p class="mx-auto p-0 db-h5 mb-5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Soon all of the amazing features that we provide here will be available in<br/> an exclusive app for both android and iOS.</p>
103
+            <p class="db-h3 text-highlight" style="line-height: clamp(3rem,2.5vw,4rem);">Our Mobile Apps Is Now Available!</p>
104
+            <p class="mx-auto p-0 db-h5 mb-5" style="line-height: clamp(1.7rem,2.5vw,3rem);">Download the app for bookings and other important notifications in<br/> an exclusive app for both android and iOS.</p>
105 105
         </div>
106 106
         {{ partial:partials/appsdownload }}
107 107
     </div>

Loading…
Cancel
Save