2010-03-12 03:18:34 +00:00
|
|
|
<!DOCTYPE html>
|
2009-03-02 10:37:33 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-03-12 03:18:34 +00:00
|
|
|
<meta charset="UTF-8" />
|
2009-03-02 10:37:33 +00:00
|
|
|
<title>Resizable Visual Test : Resizable ticket #3053</title>
|
|
|
|
<link rel="stylesheet" href="../visual.css" type="text/css" />
|
2010-02-16 01:38:23 +00:00
|
|
|
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css" />
|
2010-02-16 02:39:57 +00:00
|
|
|
<script type="text/javascript" src="../../../jquery-1.4.2.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
|
2009-12-16 22:20:18 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
|
2009-12-22 19:51:24 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../../ui/jquery.ui.resizable.js"></script>
|
2009-03-02 10:37:33 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
$("#resizable").resizable({
|
|
|
|
handles: 'all',
|
|
|
|
aspectRatio: true,
|
|
|
|
transparent: true,
|
|
|
|
ghost: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<style type="text/css">
|
|
|
|
.ui-resizable-handle { width: 8px; height: 8px; border: 1px solid rgb(128, 128, 128); background: rgb(242, 242, 242); }
|
|
|
|
.ui-resizable-n, .ui-resizable-s { left: 45%; }
|
|
|
|
.ui-resizable-e, .ui-resizable-w { top: 45%; }
|
|
|
|
.ui-resizable-se { bottom: -5px; right: -5px; }
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h1 class="ui-widget-header"><a href="http://dev.jqueryui.com/ticket/3053">#3053 - when resizing a image a row of pixels can disappear</a></h1>
|
|
|
|
|
|
|
|
<img id="resizable" src="images/test.png">
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|