ユーザーがフォルダから選択した画像のサイズを変更してドラッグしたい。私はそれを別々に行うことができました。しかし、フォルダーから選択した画像を組み合わせてサイズを変更してドラッグすると、機能しませんでした。選択した画像は表示されますが、動かせません。やり方がわかりません。誰でも教えてもらえますか?
これは最終的なコードです:
<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>
以下は結果のスクリーンショットです。画像が表示されていても、サイズを変更するオプションはありません(端は右下端でサイズ変更できません)