diff --git a/public/css/home.css b/public/css/home.css index 1410fd1..b66be18 100644 --- a/public/css/home.css +++ b/public/css/home.css @@ -711,7 +711,7 @@ footer a:hover { } .mob-menu { display: flex; - margin-bottom: 12px; + margin-bottom: 10px; } .get-started a div { diff --git a/public/js/play-vid-on-focus.js b/public/js/play-vid-on-focus.js deleted file mode 100644 index ad455c4..0000000 --- a/public/js/play-vid-on-focus.js +++ /dev/null @@ -1,17 +0,0 @@ -$(document).ready(function () { - $(".animatedVideo").each(function () { - $(this).get(0).pause(); - }); - $(window).on("scroll", function () { - $(".animatedVideo").each(function () { - var scroll = $(window).scrollTop(); - var elementTop = $(this).offset().top; - var elementHeight = $(this).height(); - if (scroll > elementTop - $(window).height() + elementHeight) { - $(this).get(0).play(); - } - - }); - }); -}); - diff --git a/public/js/smooth-view.js b/public/js/smooth-view.js deleted file mode 100644 index 433398c..0000000 --- a/public/js/smooth-view.js +++ /dev/null @@ -1,11 +0,0 @@ -const links = document.querySelectorAll(".like-this"); - - -links.forEach((link) => { - link.addEventListener("click", (event) => { - event.preventDefault(); - const targetId = link.getAttribute("href"); - const target = document.querySelector(targetId); - target.scrollIntoView({ behavior: "smooth" }); - }); -}); \ No newline at end of file diff --git a/views/home.ejs b/views/home.ejs index dfe8784..adc9da2 100644 --- a/views/home.ejs +++ b/views/home.ejs @@ -27,7 +27,10 @@ - + - +