为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. });

原文地址:https://www.cnblogs.com/angelasp/p/7278175.html

时间: 2024-10-08 09:19:30

为Bootstrap Modal(模态框)全局添加拖拽操作的相关文章

bootstrap modal 模态框拖拽扩展

主管要求bootstrap modal 带有拖拽移动效果.代码如下: JS 1 // bootstrap 模态框窗口 移动扩展, 在bootstrap 初始化后 调用 2 var btModalMoveEx = function () { 3 function moveEx($this) { 4 var $head = $this.find(".modal-header"), $dialog = $this.find(".modal-dialog"); 5 var

bootstrap modal模态框的运用

http://www.ziqiangxuetang.com/bootstrap/bootstrap-modal-plugin.html 方法 下面是一些可与 modal() 一起使用的有用的方法. 方法 描述 实例 Options: .modal(options) 把内容作为模态框激活.接受一个可选的选项对象. 1 2 3 $('#identifier').modal({ keyboard: false }) Toggle: .modal('toggle') 手动切换模态框. 1 $('#ide

修改bootstrap modal模态框的宽度

原文链接:http://blog.csdn.net/wuhawang/article/details/52252912 修改模态框的宽度很简单,修改width属性就可以了 但是要注意的一点是,修改的不是modal这个div 而是modal-dialog这个div,代码如下 [html] view plain copy <div class="modal-dialog" style="width:1100px"> 最后结果如下图所示 哈哈,很简单吧~

关于【bootstrap modal 模态框弹出瞬间消失的问题】

前提是你没有重复引入bootstrap.js\bootstrap.min.js和modal.js. 一下提供一个小例子. <button class="btn btn-primary btn-lg"  type="button"  data-toggle="modal"data-target="#myModal"> Launch demo modal </button> 注意红字部分type="

Bootstrap model模态框与百度地图API发生冲突时的解决办法

在使用百度地图API的过程中,当我需要在infoWindow的按钮点击触发modal模态框时,就会发现bootstrap的模态框会失效.弄清modal的原理就可以通过自定义modal的css样式和modal方法来解决这个问题.Bootstrap modal模态框的原理是通过控制modal框div的visibility属性来变化来实现的,在初始状态modal div的visibility属性值为hidden,在页面上隐藏,当点击按钮触发(或别的事件)一个方法使div的visibility值变为vi

为Bootstrap模态对话框添加拖拽移动功能

请自行下载使用到的Bootstrap库及jQuery库 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <link href="bootstrap.min.css" media="screen" rel="stylesheet&qu

Bootstrap 实例 - 模态框(Modal)插件

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 模态框(Modal)插件</title> <link rel="stylesheet" href="https://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.m

bootstrap弹出层Modal 模态框

bootstrap中的模态框(modal),不同于Tooltips,模态框以弹出对话框的形式出现,具有最小和最实用的功能集. 务必将模态框的 HTML 代码放在文档的最高层级内(也就是说,尽量作为 body 标签的直接子元素),以避免其他组件影响模态框的展现或功能. 默认的modal示例: [html] view plain copy <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charse

Bootstrap 的模态框类

Bootstrap 的模态框类提供了一些事件用于监听并执行你自己的代码. 事件类型 描述 show.bs.modal show 方法调用之后立即触发该事件.如果是通过点击某个作为触发器的 元素,则此元素可以通过事件的relatedTarget 属性进行访问. shown.bs.modal 此事件在模态框已经显示出来(并且同时在 CSS 过渡效果完成)之后被触 发.如果是通过点击某个作为触发器的元素,则此元素可以通过事件 的 relatedTarget 属性进行访问. hide.bs.modal