Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
dragon731012
GitHub Repository: dragon731012/-WORKING-bookmarklets-and-games
Path: blob/main/tests (don't work)/circle div test
15482 views
(function () {
	var elem = document.createElement('div');
	var body = document.getElementsByTagName('body')[0];
	body.appendChild(elem);

	elem.style.position = 'fixed';
	elem.style.top = '0px';
	elem.style.right = '0px';
	elem.style.margin = '10px';
	elem.style.paddingTop = '10px';
	elem.style.width = '200px';
	elem.style.height = '40px';
	elem.style.zIndex = 10000;
	elem.style.opacity = 1;
	elem.style.color = 'white';
	elem.style.backgroundColor = 'black';
	elem.style.textAlign = 'center';
	elem.style.cursor = 'pointer';
	elem.id = 'elem';
	elem.style.display = 'block';
	elem.style.backgroundImage="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTJfP7ogtNTBQxfwZyLNlESAa0wBFvt6ZvOgEZXfom1BA&s";
}());