"modal"
Bootstrap 4.0.0 Snippet by evarevirus

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html><html class=''> <head><script src='//production-assets.codepen.io/assets/editor/live/console_runner-079c09a0e3b9ff743e39ee2d5637b9216b3545af0de366d4b9aad9dc87e26bfd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/events_runner-73716630c22bbc8cff4bd0f07b135f00a0bdc5d14629260c3ec49e5606f98fdd.js'></script><script src='//production-assets.codepen.io/assets/editor/live/css_live_reload_init-2c0dc5167d60a5af3ee189d570b1835129687ea2a61bee3513dee3a50c115a77.js'></script><meta charset='UTF-8'><meta name="robots" content="noindex"><link rel="shortcut icon" type="image/x-icon" href="//production-assets.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico" /><link rel="mask-icon" type="" href="//production-assets.codepen.io/assets/favicon/logo-pin-f2d2b6d2c61838f7e76325261b7195c27224080bc099486ddd6dccb469b8e8e6.svg" color="#111" /><link rel="canonical" href="https://codepen.io/chriscoyier/pen/NgNymx?depth=everything&limit=all&order=popularity&page=8&q=modal&show_forks=false" /> <link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css'> <style class="cp-pen-styles">html, body { height: 100%; } body { background: #eee; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .modal { width: 500px; background: white; border: 1px solid #ccc; -webkit-transition: 1.1s ease-out; transition: 1.1s ease-out; box-shadow: -2rem 2rem 2rem rgba(0, 0, 0, 0.2); -webkit-filter: blur(0); filter: blur(0); -webkit-transform: scale(1); transform: scale(1); opacity: 1; visibility: visible; } .modal.off { opacity: 0; visibility: hidden; -webkit-filter: blur(8px); filter: blur(8px); -webkit-transform: scale(0.33); transform: scale(0.33); box-shadow: 1rem 0 0 rgba(0, 0, 0, 0.2); } @supports (offset-rotation: 0deg) { .modal { offset-rotation: 0deg; offset-path: path("M 250,100 S -300,500 -700,-200"); } .modal.off { offset-distance: 100%; } } @media (prefers-reduced-motion) { .modal { offset-path: none; } } .modal h2 { border-bottom: 1px solid #ccc; padding: 1rem; margin: 0; } .modal .content { padding: 1rem; } .modal .actions { border-top: 1px solid #ccc; background: #eee; padding: 0.5rem 1rem; } .modal .actions button { border: 0; background: #78f89f; border-radius: 5px; padding: 0.5rem 1rem; font-size: 0.8rem; line-height: 1; } #centered-toggle-button { position: absolute; } </style></head><body> <button class="toggle-button" id="centered-toggle-button">Toggle</button> <div class="modal" id="modal"> <h2>Modal Window</h2> <div class="content">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis deserunt corrupti, ut fugit magni qui quasi nisi amet repellendus non fuga omnis a sed impedit explicabo accusantium nihil doloremque consequuntur.</div> <div class="actions"> <button class="toggle-button">OK</button> </div> </div> <script src='//production-assets.codepen.io/assets/common/stopExecutionOnTimeout-b2a7b3fe212eaa732349046d8416e00a9dec26eb7fd347590fbced3ab38af52e.js'></script> <script >var buttons = document.querySelectorAll(".toggle-button"); var modal = document.querySelector("#modal"); [].forEach.call(buttons, function(button) { button.addEventListener("click", function() { modal.classList.toggle("off"); }) }); //# sourceURL=pen.js </script> </body></html>

Related: See More


Questions / Comments: