var b = document.getElementById("m");
function f(){
b.style.top += "10px";
}
setInterval(f,1000);
#m {
border-radius: 360px;
width: 150px;
height: 150px;
border: 2px solid black;
position: absolute;
top: 4px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title></title>
</head>
<body>
<center>
<img src="http://i.imgur.com/5uCVACi.png" id="m"/>
</center>
</body>
</html>
I want that every second, lower 10px more but it's not like that and only goes down 1 time, why?