怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery bootstrap提示框插件Popover
新建html文档。
书写hmtl代码。
div id="myPopover1" class="popover popover-x popover-default">
div class="arrow">/div>
h3 class="popover-header popover-title">span class="close pull-right" data-dismiss="popover-x">×/span>Title/h3>
div class="popover-body popover-content">
Lores./
/div>
div class="popover-footer">
button type="submit" class="btn btn-sm btn-primary">Submit/button>
button type="reset" class="btn btn-sm btn-default">Reset/button>
/div>
/div>
初始化css代码。
style>
body, html { font-size: 100%; padding: 0; margin: 0; }
*, *:after, *:before { box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
body { font-family: "Microsoft YaHei", "Segoe UI", "Lucida Grande", Helvetica, Arial, sans-serif; }
/style>
书写css代码。
.popover-default > .popover-title { color: #333; background-color: #f7f7f7; }
.popover-primary > .popover-title { color: #004085; background-color: #cce5ff; border-bottom: 1px solid #b8daff; }
.popover-success > .popover-title { color: #3c763d; background-color: #dff0d8; border-bottom: 1px solid #d6e9c6; }
.popover-info > .popover-title { color: #0c5460; background-color: #d1ecf1; border-bottom: 1px solid #bee5eb; }
.popover-warning > .popover-title { color: #8a6d3b; background-color: #fcf8e3; border-bottom: 1px solid #faebcc; }
.popover-danger > .popover-title { color: #a94442; background-color: #f2dede; border-bottom: 1px solid #ebccd1; }
.popover-footer { padding: 4px; background-color: #fbfbfb; text-align: right; border-top: 1px solid #ebebeb; border-radius: 0 0 5px 5px; }
.popover-footer .btn .btn { margin-bottom: 0; margin-left: 4px; }
.popover-footer .btn-group .btn .btn { margin-left: -1px; }
.popover-footer .btn-block .btn-block { margin-left: 0; }
.popover-x.has-footer.top > .arrow:after, .has-footer.popover-x.top > .arrow:after { border-top-color: #fbfbfb; }
.popover-x.has-footer.left-bottom > .arrow:after { border-top-color: transparent; border-left-color: #fbfbfb; }
.popover-x.has-footer.right-bottom > .arrow:after { border-top-color: transparent; border-right-color: #fbfbfb; }
.popover-loading { padding: 30px; background: url('../img/loading.gif') center center; }
/* hide modal backdrop */
.popover-x-body .modal-backdrop { opacity: 1; z-index: 1; display: none; overflow: hidden; }
.popover-x-body.modal-open { overflow-y: auto; }
/* popover must be behind bootstrap navbar when scrolled */
.popover-x-body .navbar { z-index: 1051; margin-right: -10px; }
书写并添加js代码。
script src="js/jquery-1.11.0.min.js">/script>
代码整体结构。
查看效果。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
标签: JQUERY
相关文章
怎样安装Dreamweaver的jquery扩展,我们通常会用dreamweaver这个网页设计软件来编写网页前台代码,在编写代码时会经常出现下拉的菜单供我们选择,为我们编写代码节省了很多的时间。这样......
2023-03-17 342 JQUERY DREAMWEAVER
jQuery MiniUI 快速入门,前段时间由于工作的原因接触到MiiUI。感觉MiiUI很强大,使用起来也很舒服。下面我就带领大家快速的使用MiiUI。MiiUI-专业WeUI控件库它能缩短开发时......
2023-03-17 330 JQUERY
怎么使用JQuery Mobile开发移动网站,现在越来越多的人用网站来做手机a,这样的好处是,可以做一个网站,基本上可以做到多个平台adroid,io,w,都可以使用。这里使用JQueryMoile......
2023-03-17 374 JQUERY