Last active
November 27, 2018 15:02
-
-
Save dsternlicht/39e08033ea5ad3f023e378fcf2989fa5 to your computer and use it in GitHub Desktop.
HTML Mock for our vanilla modal component
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
<div class="modal" style="display: none"> | |
<div class="overlay"></div> | |
<div class="modal_content"> | |
<!-- Dynamic Section --> | |
<h2>Told Ya!</h2> | |
<iframe src="https://giphy.com/embed/l52CGyJ4LZPa0" width="480" height="273" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/sandler-sentences-sounding-l52CGyJ4LZPa0">via GIPHY</a></p> | |
<!-- End of Dynamic Section --> | |
<button title="Close" class="close_modal"> | |
<i class="fas fa-times"></i> | |
</button> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment