Skip to content

Instantly share code, notes, and snippets.

@LtAstros
Created July 21, 2017 03:07
Show Gist options
  • Save LtAstros/cdff333c440950d1d3d43f9009644b25 to your computer and use it in GitHub Desktop.
Save LtAstros/cdff333c440950d1d3d43f9009644b25 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=cdff333c440950d1d3d43f9009644b25
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<img id="pic" src="https://goo.gl/pqaYFe">
</body>
</html>
{"enabledLibraries":["jquery"]}
var random = (Math.floor((Math.random() * 100) + 1)) + "%";
var randomString = random;
var $pic = $("#pic");
$("img").css("left", randomString);
$("img").css("top", randomString);
img {
height: 50px;
width: 50px;
top: 50%;
position: absolute;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment