我想重新调整大小并拖动用户从文件夹中选择的图像。我可以单独做。但是当我从文件夹中组合选择图像然后调整大小并拖动它时,我没有工作。选择的图像显示出来,但它是不动的。我不知道该怎么做。谁能告诉我?
这是最终代码:
<html>
<head>
<link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }
</style>
<body>
<input type='file' onchange="readURL(this);" />
<img id="blah" src="#" alt="your image" />
</body>
<style type="text/css">
#blah {
width: 260px;
height:300px;
padding: 0;
}
#blah img {
width: 100%;
height: 100%;
}
</style>
<script type="text/javascript">
$(function() {
$("#blah").resizable();
$("#blah").draggable();
});
</script>
<script>
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#blah')
.attr('src', e.target.result)
.width(150)
.height(200);
};
reader.readAsDataURL(input.files[0]);
}
}
</script>
</head>
</html>
下面是结果的截图。甚至显示图像,没有调整大小的选项(边缘不可调整右下边缘)