Created
August 4, 2019 17:34
-
-
Save maxdenaro/7b907a2bf7c3b884485ada6bb83c206a to your computer and use it in GitHub Desktop.
Leaving modal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var showModal = true; | |
| function showExit() { | |
| if (showModal) { | |
| showModal = false; | |
| $.magnificPopup.open({ | |
| removalDelay: 500, //delay removal by X to allow out-animation | |
| callbacks: { | |
| beforeOpen: function () { | |
| this.st.mainClass = 'mfp-zoom-in'; | |
| }, | |
| }, | |
| items: { | |
| src: '#off', | |
| type: 'inline', | |
| }, | |
| closeBtnInside: true, | |
| }); | |
| } | |
| } | |
| $(document).mouseleave(function (e) { | |
| if (e.clientY < 0) { | |
| showExit(); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment