Skip to content

Instantly share code, notes, and snippets.

@maxdenaro
Created August 4, 2019 17:34
Show Gist options
  • Select an option

  • Save maxdenaro/7b907a2bf7c3b884485ada6bb83c206a to your computer and use it in GitHub Desktop.

Select an option

Save maxdenaro/7b907a2bf7c3b884485ada6bb83c206a to your computer and use it in GitHub Desktop.
Leaving modal
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