我想重新调整大小并拖动用户从文件夹中选择的图像。我可以单独做。但是当我合并从文件夹中选择图像然后调整大小并拖动它时,我没有工作。 显示所选图像,但它是不可移动的。我不知道怎么做。有谁能告诉我?
这是最终代码:
<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>
以下是结果的截图。即使显示图像,也没有调整大小的选项(边缘不可重新调整到右下角)
答案 0 :(得分:1)
似乎与您正在链接的jquery.ui库有问题。使用以下显示的标签
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.js"></script>
希望这能解决你的问题。