Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Ejemplo 2</title>
</head>
<body>
    <div id = "bid01"></div>
</body>
</html>
 
setInterval(function(){
    if (parseInt(getComputedStyle(bid01).marginTop) <= 650){
        bid01.style.marginTop = parseInt(getComputedStyle(bid01).marginTop) + 100 + "px";
    }
    else{
        bid01.style.marginTop = "-30px";
    }
}, 1000);
Output

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

Dismiss x
public
Bin info
Alexis88pro
0viewers