<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Animate Frame</title>
</head>
<body>
<style>
div {
width: 20px;
height: 20px;
float: left;
}
button {
position: absolute;
top: 20px;
left: 20px;
}
#stop {
left: 100px;
}
</style>
<script>
var animateFrameId;
function...