Created
November 27, 2016 14:40
-
-
Save vladyio/2d80b323b82a3e0f203567864b39d13e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
div { | |
position:relative; | |
} | |
</style> | |
<title>Animating block</title> | |
<script> | |
var pos = 0; | |
function move() { | |
pos += 5; | |
if (pos > 640) { | |
pos = 0; | |
} | |
document.getElementById("movetext").style.left = pos; | |
window.setTimeout("move();", 33); | |
} | |
</script> | |
</head> | |
<body onLoad="move();"> | |
<div id="movetext"> | |
<b>inside a div</b> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment