このjqueryプラグインでbootstrap Twitterダイアログをモーダルドラッグ可能にしようとしています:
http://threedubmedia.com/code/event/drag#demos
しかし、それは機能しません。
var $div = $('html');
console.debug($('.drag'));
$('#modalTest')
.drag("start", function(ev, dd) {
dd.limit = $div.offset();
dd.limit.bottom = dd.limit.top + $div.outerHeight() - $(this).outerHeight();
dd.limit.right = dd.limit.left + $div.outerWidth() - $(this).outerWidth();
})
.drag(function(ev, dd) {
$(this).css({
top: Math.min(dd.limit.bottom, Math.max(dd.limit.top, dd.offsetY))
, left: Math.min(dd.limit.right, Math.max(dd.limit.left, dd.offsetX))
});
});
どうすればいいのか考えていますか?
$("#myModal").draggable({
handle: ".modal-header"
});
わたしにはできる。 there から取得しました。あなたが私に感謝を与えるならば、 Andres Ilich に70%を与えてください
最上位のソリューション(Mizbah Ahsan作)は完全に正しくありません...しかし近いです。 draggable()をモーダルダイアログ要素に適用すると、モーダルダイアログをドラッグすると、ブラウザウィンドウのスクロールバーが画面上をドラッグします。それを修正する方法は、代わりにdraggable()をmodal-dialogクラスに適用することです:
$(".modal-dialog").draggable({
handle: ".modal-header"
});
ありがとう!
JQuery UIまたはサードパーティのプラグインを使用したくない場合は、以下のコードを使用できます。それは単なるjQueryです。
$(".modal").modal("show");
$(".modal-header").on("mousedown", function(mousedownEvt) {
var $draggable = $(this);
var x = mousedownEvt.pageX - $draggable.offset().left,
y = mousedownEvt.pageY - $draggable.offset().top;
$("body").on("mousemove.draggable", function(mousemoveEvt) {
$draggable.closest(".modal-dialog").offset({
"left": mousemoveEvt.pageX - x,
"top": mousemoveEvt.pageY - y
});
});
$("body").one("mouseup", function() {
$("body").off("mousemove.draggable");
});
$draggable.closest(".modal").one("bs.modal.hide", function() {
$("body").off("mousemove.draggable");
});
});
.modal-header {
cursor: move;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div>
他の人が言ったように、最も簡単な解決策は、モーダルを表示した直後にjQuery UIからdraggable()
関数を呼び出すことです。
$('#my-modal').modal('show')
.draggable({ handle: ".modal-header" });
ただし、BootstrapとjQuery UIの互換性にはいくつかの問題があるため、cssにいくつかの追加修正が必要です。
.modal
{
overflow: hidden;
}
.modal-dialog{
margin-right: 0;
margin-left: 0;
}
.modal-header{ /* not necessary but imo important for user */
cursor: move;
}
ドラッグ可能なjquery UIを使用し、はるかに単純 http://jqueryui.com/draggable/
これは私がしました:
$("#myModal").modal({}).draggable();
そしてそれは私の非常に標準的/基本的なモーダルドラッグ可能にします。
どのように/なぜ機能したのかはわかりませんが、うまくいきました。
マウスカーソルの場合(jQuery UIを使用):
$('#my-modal').draggable({
handle: ".modal-header"
});
タッチカーソルの場合(jQueryを使用):
var box = null;
var touchobj = null;
var position = {'x':0, 'y':0};
var positionbox = {'x':0, 'y':0};
// init touch
$('.modal-header').on('touchstart', function(e){
box = $(this).closest('.modal-dialog');
touchobj = e.changedTouches[0];
// take position touch cursor
position['x'] = touchobj.pageX;
position['y'] = touchobj.pageY;
//take original position box to move with touch
positionbox['x'] = parseInt(box.css('left'));
positionbox['y'] = parseInt(box.css('top'));
e.preventDefault();
});
// on move touch
$('.modal-header').on('touchmove', function(e){
var dist = {'x':0, 'y':0};
touchobj = e.changedTouches[0];
// we calculate the distance of move
dist['x'] = parseInt(touchobj.clientX) - position['x'];
dist['y'] = parseInt(touchobj.clientY) - position['y'];
// we apply the movement distance on the box
box.css('left', positionbox['x']+dist['x'] +"px");
box.css('top', positionbox['y']+dist['y'] +"px");
e.preventDefault();
});
2つのソリューションの追加は互換性があります
私の場合、モーダルダイアログにbackdrop
関数を適用する前に、top
とleft
およびdraggable
プロパティを設定する必要がありました。たぶんそれは誰かを助けるかもしれない;)
if (!($('.modal.in').length)) {
$('.modal-dialog').css({
top: 0,
left: 0
});
}
$('#myModal').modal({
backdrop: false,
show: true
});
$('.modal-dialog').draggable({
handle: ".modal-header"
});
私の場合、ドラッグ可能を有効にします。できます。
var bootstrapDialog = new BootstrapDialog({
title: 'Message',
draggable: true,
closable: false,
size: BootstrapDialog.SIZE_WIDE,
message: 'Hello World',
buttons: [{
label: 'close',
action: function (dialogRef) {
dialogRef.close();
}
}],
});
bootstrapDialog.open();
役に立つかもしれません。