Created
August 29, 2017 12:57
-
-
Save bezenson/9e0a77c19af469054f34b3d286a9cb5b 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
this.point = document.createElement('div'); | |
document.body.appendChild(this.point); | |
this.point.style.width = '10px'; | |
this.point.style.height = '10px'; | |
this.point.style.backgroundColor = 'red'; | |
this.point.style.borderRadius = '50%'; | |
this.point.style.position = 'absolute'; | |
this.point.style.zIndex = '999999'; | |
this.point.style.left = '0px'; | |
this.point.style.top = '0px'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment