Last active
January 8, 2018 15:19
-
-
Save imlinus/d63697a518c6c3c77a817b13947589b8 to your computer and use it in GitHub Desktop.
Simple as cake modal
This file contains 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
<div class="modal" data-modal-id="foo"> | |
<span onclick="Modal.close('foo')">×</span> | |
<p>Lorem ipsum..</p> | |
</div> | |
<script> | |
Modal.open('foo') | |
</script> |
This file contains 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 Modal = { | |
open: function(id) { | |
document.querySelector('.modal[data-modal-id="' + id + '"]').classList.add('active') | |
}, | |
close: function(id) { | |
document.querySelector('.modal[data-modal-id="' + id + '"]').classList.remove('active') | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment