<html>
	<style>
		.inputDiv {
			z-index: 9999
		}
	</style>
	<body>
		<div id="inputDiv" class="inputDiv">
			<input type="text"></input>
		</div>
	</body>
</html>
import zim from "https://zimjs.org/cdn/017/zim";

// see https://zimjs.com
// and https://zimjs.com/learn
// and https://zimjs.com/docs

new Frame(FIT, 1024, 768, darker, dark, ready);
function ready() {

	// given F (Frame), S (Stage), W (width), H (height)
    // put your code here
	
	new Emitter({
		obj:new Circle(50,[blue,green,pink]),
		force:{min:2, max:7},
		gravity:0
	}).center();

    F.makeIcon(null,black)
		.sca(2)
		.centerReg()
		.animate({
			props:{scale:1},
			rewind:true,
			loop:true
		})
		.tap(()=>{zgo("https://zimjs.com", "zim")});
	
	
	F.madeWith({box:faint}).pos(40,40,RIGHT,BOTTOM);
	
} // end ready
View Compiled
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.