【Labs】jQueryで画像をドラッグ&ドロップ - web design lab
にほんブログ村 デザインブログ Webデザインへ PVアクセスランキング にほんブログ村

【Labs】jQueryで画像をドラッグ&ドロップ


【Labs】jQueryで画像をドラッグ&ドロップ

こんにちは(・∀・)

今日はjQueryで画像をドラッグ&ドロップさせるサンプルをご紹介します。

jQueryで画像をドラッグ&ドロップ

Google Hosted LibrariesからjQuery 1.x snippetとjQuery UI snippetを<head>内に読み込みます。


<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
HTML

<!--JavaScriptは画像グループの直下に記述-->
<div id="sortable">
<img src="img/a.png">
<img src="img/b.png">
<img src="img/c.png">
</div>
<script>
document.write('<style>');
document.write('#sortable img:hover {cursor: move;}');
document.write('</style>');
$('#sortable').sortable();
$('#sortable').disableSelection();
</script>
Result

サンプルデモ

参考

http://blog.asial.co.jp/1021


にほんブログ村 デザインブログ Webデザインへ PVアクセスランキング にほんブログ村