Skip to content

Instantly share code, notes, and snippets.

@camilamoreiradev
Created March 7, 2020 20:07
Show Gist options
  • Save camilamoreiradev/8911d72cbde2975d945f4dbe1436521a to your computer and use it in GitHub Desktop.
Save camilamoreiradev/8911d72cbde2975d945f4dbe1436521a to your computer and use it in GitHub Desktop.
Código para biblioteca interna
<?php
class EmptyClass {}
echo <<<HTML
<style>
.cm_loader {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url('https://media1.tenor.com/images/8ac12962c05648c55ca85771f4a69b2d/tenor.gif?itemid=9212724') 50% 50% no-repeat white;
background-size: 10%;
}
</style>
<div class="cm_loader"></div>
<script>
window.onload = function(){
$(".cm_loader").fadeOut("slow");
};
</script>
HTML;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment