Skip to content

Instantly share code, notes, and snippets.

@camilamoreiradev
Created February 21, 2018 23:46
Show Gist options
  • Save camilamoreiradev/4086ddecf8448b35725cada86b110dc9 to your computer and use it in GitHub Desktop.
Save camilamoreiradev/4086ddecf8448b35725cada86b110dc9 to your computer and use it in GitHub Desktop.
Criar botão que ativa o full screen na página.
/* BOTÃO HTML */
<a href="javascript:;" class="dropdown-toggle" id="requestFullScreen">
Expandir
</a>
/* JAVASCRIPT */
<script>
$(document).ready(function() {
$('#requestFullScreen').click(function () {
screenfull.request();
});
});
</script>
/* LINK DE DEMO */
https://jsfiddle.net/camilamoreira_webdesigner/1jtkgL62/11/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment