diff --git a/static/app.js b/static/app.js index 3a521a8148f40cdc57178cdb41ef7c54d4923068..d0efa11257436d79677933742a169cd9a1dad178 100644 --- a/static/app.js +++ b/static/app.js @@ -31,25 +31,22 @@ buttons.forEach(button => { delete activeSlide.dataset.active }) }) - - document.addEventListener("DOMContentLoaded", function() { - showPopup(); - setTimeout(closePopup, 15000); -}); - -function showPopup() { + document.addEventListener("DOMContentLoaded", function () { var popupContainer = document.getElementById("popup-container"); popupContainer.style.display = "block"; - void popupContainer.offsetWidth; - popupContainer.classList.add("show"); - document.body.style.overflow = "hidden"; // Disable scrolling -} + document.body.style.overflow = "hidden"; + setTimeout(closePopup, 15000); +}); function closePopup() { var popupContainer = document.getElementById("popup-container"); popupContainer.classList.remove("show"); - document.body.style.overflow = "auto"; // Enable scrolling + document.body.style.overflow = "auto"; + setTimeout(function () { + popupContainer.style.display = "none"; + }, 2000); } + diff --git a/static/style.css b/static/style.css index 724bc351b0c9486695adce1698cfe9285ba7b15d..bceca7c974c90a18ba59e8fc36d7570e8c5fc6d9 100644 --- a/static/style.css +++ b/static/style.css @@ -465,9 +465,13 @@ filter: blur(0); margin: 0; padding: 0; height: 100%; +} + +.bodypopup.popup-active { overflow: hidden; } + #popup-container { display: none; position: fixed; diff --git a/wiki/pages/team.html b/wiki/pages/team.html index 6c3195cb025766dcbe2844a2ac3fa98e3ce15c7e..1bcd3b538c2fbbb2efe4d8013caeef82e20bf385 100644 --- a/wiki/pages/team.html +++ b/wiki/pages/team.html @@ -58,18 +58,6 @@ </div> </div> </div> - - <div class="column"> - <div class="image"> - <img class="image__img" src="https://static.igem.wiki/teams/5029/wiki/team-pictures/sree-sized.png" alt="Sree Paladugu" width="100%"> - <div class="image__overlay"> - <div class="image__title">Sree Paladugu</div> - <p class="image__description"> - Sree is a sophomore at duPont Manual High School. She enjoys biology and writing and aims to use this skill to give back to the world. - </p> - </div> - </div> - </div> </div> @@ -112,11 +100,11 @@ <div class="column"> <div class="image"> - <img class="image__img" src="https://static.igem.wiki/teams/5029/wiki/team-pictures/priyam-sized.png" alt="Priyam Kumaran" width="100%"> + <img class="image__img" src="https://static.igem.wiki/teams/5029/wiki/team-pictures/sree-sized.png" alt="Sree Paladugu" width="100%"> <div class="image__overlay"> - <div class="image__title">Priyam Kumaran</div> + <div class="image__title">Sree Paladugu</div> <p class="image__description"> - Priyam Kumaran is a current freshman at duPont Manual Highschool. She enjoys working in the lab, and hopefully uses her lab knowledge in the future. + Sree is a sophomore at duPont Manual High School. She enjoys biology and writing and aims to use this skill to give back to the world. </p> </div> </div>