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
<body> | |
<input id="menu-hamburguer" type="checkbox"> | |
<label for="menu-hamburguer"> | |
<div class="menu"> | |
<span class="hamburguer"></span> | |
</div> | |
</label> | |
</body> |
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
<script> | |
jQuery( document ).ready( function() { | |
//Setup our on formSumbit Listener. | |
jQuery( document ).on( 'nfFormSubmitResponse', function() { | |
//Do Stuff | |
ga('send', 'event', 'Email List', 'Subscribed', 'New Subscriber'); | |
}); | |
}); | |
</script> |
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
<button id="playme" onclick="mostrarVideo('video','videoIframe')">Play</button> | |
<!-- Lightbox video --> | |
<div id="video" class="lightbox" onclick="esconderVideo('video','videoIframe')"> | |
<div class="lightbox-container"> | |
<div class="lightbox-content"> | |
<button onclick="esconderVideo('video','videoIframe')" class="lightbox-close">Fechar | ✕</button> | |
<div class="video-container"> | |
<iframe id="videoIframe" width="960" height="540" src="https://www.youtube.com/embed/v0ALfnB7cAY?controls=0" frameborder="0" allowfullscreen autoplay></iframe> | |
</div> |