h1 { padding: 20px 0 } p, h1 { max-width: 680px; margin: 0 auto } /* #exampleModalCenter { display: none; } */
// Open the popup after 6 seconds, but only if the user has scrolled down more than 70%. $(window).scroll(function() { if ($(document).scrollTop() > $(document).height()*0.70 && $("#exampleModalCenter").attr("displayed") === "false") { setTimeout(function() { $('#exampleModalCenter').modal('show'); $("#exampleModalCenter").attr("displayed", "true"); }, 6000); } });