I need to change the class of some elements after 3 seconds that start loading the site, I want to do this but I can not, I was trying to SetTimeout
but I can not handle the seconds issue and I did not find a solution via Google.
I want the site to load with the div in the .oculto
class and after 3 seconds it goes to the .visivel
Anyone know of any solutions, please?
Follow Example: HTML
<div class="oculto"></div>
CSS
.oculto{opacity:"0"}
.visivel{opacity:"1";width:100%;height:10%;background-color:#cccccc;}