Skip to content

Instantly share code, notes, and snippets.

@apipkin
Forked from anonymous/gist:365814
Created April 14, 2010 13:41
Show Gist options
  • Save apipkin/365822 to your computer and use it in GitHub Desktop.
Save apipkin/365822 to your computer and use it in GitHub Desktop.
function moveIt(radio) {
var pos;
pos = radio.value;
moz = document.getElementById('moz');
switch (pos) {
case "nw" :
moz.style.top="200px";
break;
case "ne" :
moz.style.top="400px";
break;
case "se" :
moz.style.top="600px";
break;
case "sw" :
moz.style.top="800px";
break;
default:
document.write('not possible');
}
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Image Testing!</title>
<link rel="stylesheet" type="text/css" href="image.css" />
<script src="image.js" language="javascript" type="text/javascript"></script>
</head>
<body>
<h1>Background Image Position Control Buttons!!</h1>
<form id=mine>
<p><input type="radio" name="position" value="nw" onClick="moveIt(this);" /><label>North West</label></p>
<p><input type="radio" name="position" value="ne" onClick="moveIt(this);" /><label>North East</label></p>
<p><input type="radio" name="position" value="se" onClick="moveIt(this);" /><label>South East</label></p>
<p><input type="radio" name="position" value="sw" onClick="moveIt(this);" /><label>South West</label></p>
</form>
<div id="one">
<div class="img"><img id="moz" src="moz.png" /></div>
This is some kind of paragraph that will discribe me!<br />
Something about me is I am short. and not tall. <br />
Another thing about me is I like to program. <br />
Something else that is about me is I like food. <br />
Another thing that is about me is I like to golf. <br />
Another thing about me is I like to shoot pool. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
Something about me is I like to golf. fill info here. <br />
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment