bootstrap
高彬
C#程序员,欢迎交流,QQ:31705252
展开
-
Jquery-drawer抽屉插件
基于bootstrap和jquery,自定义抽屉样式,pc端web程序常用左右侧抽屉样式,因此本示例不考虑上下侧的抽屉。效果:插件 :$.fn.extend({ drawer: function (options) { var _this = $(this); var defaults = { title: "标题",//默认标题 placement: "right",//left表示左侧滑出,righ原创 2020-11-20 10:52:52 · 2249 阅读 · 0 评论 -
bootstrap的popover呈现table
效果如下图:原生的popover只支持 静态内容,此示例中的table是动态渲染的,需要对部分源码稍作调试。POPOVER插件调整如下:+function ($) { "use strict"; // POPOVER PUBLIC CLASS DEFINITION // =============================== var Popover = function (element, options) {原创 2020-11-19 17:11:36 · 1170 阅读 · 0 评论 -
bootstrap气泡确认
基于bootstrap的popover插件实现,效果如下:插件代码:(function ($) { $.fn.extend({ popConfirm: function (options,fun) { var _this = $(this); var defaults = { title: "提示", content: "确认此操作?",原创 2020-11-18 20:38:45 · 439 阅读 · 0 评论