diff --git a/appointment.html b/appointment.html index 045c26d8..0f4c49ba 100644 --- a/appointment.html +++ b/appointment.html @@ -115,6 +115,48 @@ padding: 8px; } } + + .cursor{ + z-index: 999; + background: rgb(11, 173, 198); + position: fixed; + width: 20px; + height: 20px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + pointer-events: none; + box-shadow: 0 0 20px rgb(11, 173, 198), + 0 0 60px rgb(11, 173, 198), + 0 0 100px rgb(11, 173, 198); + + animation: colors 5s infinite; + transform: translate(-50%,-50%); + + +} + +@keyframes colors { + 0%{ + filter: hue-rotate(0deg); + } + +} + +.cursor:before{ + size: 100px; + content: ''; + position: absolute; + background: rgb(11, 173, 198); + width: 50px; + height: 50px; + opacity: 0.2; + transform: translate(-30%,-30%); + border-radius: 50%; + +} + @@ -172,6 +214,7 @@ +
diff --git a/aptmnt.html b/aptmnt.html index a1c55f6b..8b99cd17 100644 --- a/aptmnt.html +++ b/aptmnt.html @@ -115,6 +115,48 @@ padding: 8px; } } + + .cursor{ + z-index: 999; + background: rgb(11, 173, 198); + position: fixed; + width: 20px; + height: 20px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + pointer-events: none; + box-shadow: 0 0 20px rgb(11, 173, 198), + 0 0 60px rgb(11, 173, 198), + 0 0 100px rgb(11, 173, 198); + + animation: colors 5s infinite; + transform: translate(-50%,-50%); + + +} + +@keyframes colors { + 0%{ + filter: hue-rotate(0deg); + } + +} + +.cursor:before{ + size: 100px; + content: ''; + position: absolute; + background: rgb(11, 173, 198); + width: 50px; + height: 50px; + opacity: 0.2; + transform: translate(-30%,-30%); + border-radius: 50%; + +} + @@ -173,6 +215,37 @@ +
+ diff --git a/dex.html b/dex.html index 1f878e31..198adfb8 100644 --- a/dex.html +++ b/dex.html @@ -22,6 +22,47 @@ background-color: #3fbcc0; z-index: 9999; } + .cursor{ + z-index: 999; + background: rgb(11, 173, 198); + position: fixed; + width: 20px; + height: 20px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + pointer-events: none; + box-shadow: 0 0 20px rgb(11, 173, 198), + 0 0 60px rgb(11, 173, 198), + 0 0 100px rgb(11, 173, 198); + + animation: colors 5s infinite; + transform: translate(-50%,-50%); + + +} + +@keyframes colors { + 0%{ + filter: hue-rotate(0deg); + } + +} + +.cursor:before{ + size: 100px; + content: ''; + position: absolute; + background: rgb(11, 173, 198); + width: 50px; + height: 50px; + opacity: 0.2; + transform: translate(-30%,-30%); + border-radius: 50%; + +} + @@ -236,6 +277,7 @@ +
+ diff --git a/faq.html b/faq.html index 79c47464..3e5581e5 100644 --- a/faq.html +++ b/faq.html @@ -117,6 +117,48 @@ z-index: 9999; } + .cursor{ + z-index: 999; + background: rgb(11, 173, 198); + position: fixed; + width: 20px; + height: 20px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + pointer-events: none; + box-shadow: 0 0 20px rgb(11, 173, 198), + 0 0 60px rgb(11, 173, 198), + 0 0 100px rgb(11, 173, 198); + + animation: colors 5s infinite; + transform: translate(-50%,-50%); + + +} + +@keyframes colors { + 0%{ + filter: hue-rotate(0deg); + } + +} + +.cursor:before{ + size: 100px; + content: ''; + position: absolute; + background: rgb(11, 173, 198); + width: 50px; + height: 50px; + opacity: 0.2; + transform: translate(-30%,-30%); + border-radius: 50%; + +} + + @@ -341,6 +383,7 @@

RAPIDOC Newsletter


+
@@ -380,6 +423,34 @@

RAPIDOC Newsletter


} } }); +const cursor = document.querySelector(".cursor"); + +//follow cursor on mouse move +document.addEventListener("mousemove",(e)=>{ + let x = e.pageX; + let y = e.pageY; + + cursor.style.top = y + "px"; + cursor.style.left =x + "px"; + cursor.style.display ="block"; + + //cursor effects on mouse stopped + function mouseStopped(){ + cursor.style.display="none"; + + } + clearTimeout(timeout); + timeout = setTimeout(mouseStopped,1000); + + +}); + +//cursor effect on mouseout + +document.addEventListener("mouseout",()=>{ + cursor.style.display="none"; + +}); \ No newline at end of file diff --git a/index.html b/index.html index 8520e1ae..f822463c 100644 --- a/index.html +++ b/index.html @@ -18,6 +18,8 @@ publicKey: "o6kveYmOSDrs0l1Mg", }); })(); + + @@ -335,6 +337,48 @@ opacity: 0; visibility: hidden; } + + .cursor{ + z-index: 999; + background: rgb(11, 173, 198); + position: fixed; + width: 20px; + height: 20px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + pointer-events: none; + box-shadow: 0 0 20px rgb(11, 173, 198), + 0 0 60px rgb(11, 173, 198), + 0 0 100px rgb(11, 173, 198); + + animation: colors 5s infinite; + transform: translate(-50%,-50%); + + +} + +@keyframes colors { + 0%{ + filter: hue-rotate(0deg); + } + +} + +.cursor:before{ + size: 100px; + content: ''; + position: absolute; + background: rgb(11, 173, 198); + width: 50px; + height: 50px; + opacity: 0.2; + transform: translate(-30%,-30%); + border-radius: 50%; + +} +
@@ -84,6 +127,7 @@

Start your
journey now

+
@@ -101,6 +145,35 @@

Start your
journey now

document.getElementById("registerForm").scrollIntoView({ behavior: "smooth" }); }); }); + + const cursor = document.querySelector(".cursor"); + +//follow cursor on mouse move +document.addEventListener("mousemove",(e)=>{ + let x = e.pageX; + let y = e.pageY; + + cursor.style.top = y + "px"; + cursor.style.left =x + "px"; + cursor.style.display ="block"; + + //cursor effects on mouse stopped + function mouseStopped(){ + cursor.style.display="none"; + + } + clearTimeout(timeout); + timeout = setTimeout(mouseStopped,1000); + + +}); + +//cursor effect on mouseout + +document.addEventListener("mouseout",()=>{ + cursor.style.display="none"; + +}); diff --git a/med.html b/med.html index 4cc0a715..8aef2c0a 100644 --- a/med.html +++ b/med.html @@ -6,6 +6,80 @@ Document + Order here portal here. +
+ \ No newline at end of file diff --git a/medicine.html b/medicine.html index 572f85a6..5f1394d9 100644 --- a/medicine.html +++ b/medicine.html @@ -13,6 +13,49 @@ +
@@ -146,6 +189,37 @@

RAPIDOC Newsletter


+
+ diff --git a/news.html b/news.html index 5df6b083..14bc508c 100644 --- a/news.html +++ b/news.html @@ -395,6 +395,48 @@ } } +.cursor{ + z-index: 999; + background: rgb(11, 173, 198); + position: fixed; + width: 20px; + height: 20px; + display: flex; + justify-content: center; + align-items: center; + border-radius: 50%; + pointer-events: none; + box-shadow: 0 0 20px rgb(11, 173, 198), + 0 0 60px rgb(11, 173, 198), + 0 0 100px rgb(11, 173, 198); + + animation: colors 5s infinite; + transform: translate(-50%,-50%); + + +} + +@keyframes colors { + 0%{ + filter: hue-rotate(0deg); + } + +} + +.cursor:before{ + size: 100px; + content: ''; + position: absolute; + background: rgb(11, 173, 198); + width: 50px; + height: 50px; + opacity: 0.2; + transform: translate(-30%,-30%); + border-radius: 50%; + +} + + @@ -695,6 +737,7 @@

RAPIDOC Newsletter


+
@@ -733,6 +776,35 @@

RAPIDOC Newsletter


checkButtonVisibility(); }); + const cursor = document.querySelector(".cursor"); + +//follow cursor on mouse move +document.addEventListener("mousemove",(e)=>{ + let x = e.pageX; + let y = e.pageY; + + cursor.style.top = y + "px"; + cursor.style.left =x + "px"; + cursor.style.display ="block"; + + //cursor effects on mouse stopped + function mouseStopped(){ + cursor.style.display="none"; + + } + clearTimeout(timeout); + timeout = setTimeout(mouseStopped,1000); + + +}); + +//cursor effect on mouseout + +document.addEventListener("mouseout",()=>{ + cursor.style.display="none"; + +}); + diff --git a/successful_appointment.html b/successful_appointment.html index 43cbd2fd..873a91a5 100644 --- a/successful_appointment.html +++ b/successful_appointment.html @@ -4,6 +4,49 @@ Appointment Booking Success +
@@ -215,6 +258,7 @@

RAPIDOC Newsletter

+
@@ -225,7 +269,35 @@

RAPIDOC Newsletter

+ \ No newline at end of file