中文字幕精品亚洲无线码二区,国产黄a三级三级三级看三级,亚洲七七久久桃花影院,丰满少妇被猛烈进入,国产小视频在线观看网站

為(wei)Bootstrap Modal(模態框)全局添加拖拽操作

 在js中綁定方法

$(document).on("show.bs.modal", ".modal", function(){
    $(this).draggable({
//        handle: ".modal-header"   // 只能點擊頭部拖動
    });
    $(this).css("overflow", "hidden"); // 防止出現滾動條,出現的話,你會把滾動條一起拖著走的
});

  

事件描述示例
show.bs.modal 在調用 show 方法后觸發。 $("#identifier").on('show.bs.modal', function(){//do sth. });
show.bs.modal 當模態框對用戶可見時觸發(將等待 CSS 過渡效果完成)。 $("#identifier").on('shown.bs.modal', function(){//do sth. });
hide.bs.modal 當調用 hide 方法時觸發。 $("#identifier").on('hide.bs.modal', function(){//do sth. });
hidden.bs.modal 當模態框完全對用戶隱藏時觸發。 $("#identifier").on('hidden.bs.modal', function(){//do sth. });

posted @ 2019-11-06 18:03  Angelasp  閱讀(931)  評論(0)    收藏  舉報