4
I’m trying to make the text appear over time and the image appears a little bit more time apart, to give a more interesting effect. The html and js code I will provide. The problem is that where the images are is in the same block as the text. HTML
<div class="span10">
<div class="colorBody bodyForm">
<div id="show" style="display: none;">
<section >
<article class="textBox letra">
<header><h2>BOX banheiro</h2></header>
<span></span>
<br/>
<span></span>
</article>
<div class="imgRigth">
<img src="/img/box/bortovidros-1.jpg"/>
</div>
</section>
</div>
</div>
Javascript:
function showBody(){
$('#show').fadeIn(1000);
}
It worked out this way, thank you very much
– hahnmatheus