Created
March 7, 2020 20:07
-
-
Save camilamoreiradev/8911d72cbde2975d945f4dbe1436521a to your computer and use it in GitHub Desktop.
Código para biblioteca interna
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
<?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