1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<title>Offset</title>
<style>
body {
margin: 0px;
}
#wrapper {
width: 300px;
height: 300px;
margin: 0px;
}
#clicker {
position: relative;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
background-color: red;
margin: 0px;
}
</style>
<script src="/jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="/offset.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="wrapper">
<div id="clicker"></div>
</div>
</body>
</html>
|