$("body").append('<div class="shadow-full"></div>');
But it appears at once, wanted to have an effect for it to appear more smoothly, can you do that?
$("body").append('<div class="shadow-full"></div>');
But it appears at once, wanted to have an effect for it to appear more smoothly, can you do that?
You have to separate this in steps.
To do this "there jQuery" might look like this:
$('<div class="shadow-full">Teste!</div>')
.hide()
.appendTo("body")
.fadeIn(1000);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>