Created
May 28, 2016 13:27
-
-
Save pemrouz/9353cbd14bd3b73520db915e7213dd8f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<style> | |
#a, #b { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 20%; | |
height: 100px; | |
text-align: center; | |
line-height: 100px; | |
background: red; | |
overflow: hidden; | |
} | |
#b { | |
right: 0; | |
left: initial; | |
background: green; | |
} | |
</style> | |
<div id="a">A</div> | |
<div id="b">1</div> | |
<script> | |
setInterval(function(){ | |
var val = ++b.textContent | |
b.textContent = val % 10 | |
}, 1000) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment