2008-05-24 14:09:23 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Draggable - Automated Test Page</title>
|
2008-05-24 22:30:03 +00:00
|
|
|
<script type="text/javascript" src="../../jquery/jquery-1.2.6.js"></script>
|
2008-05-24 14:09:23 +00:00
|
|
|
<script type="text/javascript" src="../../ui/source/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/source/ui.draggable.js"></script>
|
|
|
|
|
2008-05-26 12:41:59 +00:00
|
|
|
<script type="text/javascript" src="ui.testmouse.js"></script>
|
|
|
|
|
2008-05-24 14:09:23 +00:00
|
|
|
<style type="text/css">
|
|
|
|
|
2008-05-26 12:41:59 +00:00
|
|
|
html, body { height: 100%; }
|
2008-05-24 14:09:23 +00:00
|
|
|
#main { height: 100%; }
|
2008-05-26 12:41:59 +00:00
|
|
|
.drag { position: relative; margin: 10px; padding: 10px; border: 3px solid black; cursor: move; width: 200px; height: 40px; background: #eef; }
|
2008-05-24 14:09:23 +00:00
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
|
2008-05-26 12:41:59 +00:00
|
|
|
$(".drag").draggable().testMouse({
|
|
|
|
speed: "fast"
|
|
|
|
});
|
2008-05-24 14:09:23 +00:00
|
|
|
|
|
|
|
$('#begin').click(function(e) {
|
2008-05-26 12:41:59 +00:00
|
|
|
$("#status").text("Running...");
|
|
|
|
$(".drag:eq(0)").testMouse("drag", 100, 0, function() {
|
|
|
|
$('#status').text("Ready");
|
|
|
|
});
|
2008-05-24 14:09:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="main">
|
|
|
|
|
|
|
|
<h1>jQuery UI Draggable - Automated Test</h1>
|
|
|
|
|
2008-05-26 12:41:59 +00:00
|
|
|
Status: <span id="status">Ready</span>
|
|
|
|
|
2008-05-24 14:09:23 +00:00
|
|
|
<div style="height: 3em;"><button id="begin">Run Test</button></div>
|
|
|
|
|
2008-05-26 12:41:59 +00:00
|
|
|
<div class="drag">
|
|
|
|
Drag 1
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="drag">
|
|
|
|
Drag 2
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="drag">
|
|
|
|
Drag 3
|
2008-05-24 14:09:23 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|