Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<div id="load">
        <div class="spinner"></div>
    </div>
</body>
</html>
 
window.onload = function(){
    //quando o documento terminar de carregar esconde a div
    setTimeout(function(){
        fadeOut('load');
        document.getElementById('content').style.webkitFilter = 'none';
    },1000);
}
function fadeOut(id){
    //pega o elemento da página
    obj = document.getElementById(id);
    //seta a opacidade como 0
    obj.style.opacity = 1.00;
    fazFadeOut = function (){
        if(obj.style.opacity != 0){  
            var atual = Number(obj.style.opacity);   
            var newopac = Math.floor(atual - Number(0.01)); //aqui usando o math.floor()
            obj.style.opacity = String(newopac);    
            if(obj.style.opacity == 0){
                obj.style.display = 'none';
            }
            setTimeout('fazFadeOut()', 100);
        }
    }
    fazFadeOut();
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers