1、
<button type="button" rel="drevil" data-content="报名截止时间:'+time+'" data-container="body" data-toggle="popover" data-placement="bottom"></button>
2、
$(function () { $("[data-toggle='popover']").popover(); }); $("[rel=drevil]").popover({ trigger:'manual', //placement : 'bottom', //placement of the popover. also can use top, bottom, left or right //天title : '<div style="text-align:center; color:red; text-decoration:underline; font-size:14px;"> Muah ha ha</div>', //this is the top title bar of the popover. add some basic css html: 'true', //needed to show html of course //content : '<div id="popOverBox"><img src="http://www.hd-report.com/wp-content /uploads/2008/08/mr-evil.jpg" width="251" height="201" /></div>', //this is the content of the html box. add the image here or anything you want really. animation: false }).on("mouseenter", function () { var _this = this; $(this).popover("show"); $(this).siblings(".popover").on("mouseleave", function () { $(_this).popover('hide'); }); }).on("mouseleave", function () { var _this = this; setTimeout(function () { if (!$(".popover:hover").length) { $(_this).popover("hide") } }, 300); });
相关推荐:《bootstrap入门教程》
作者:爱喝马黛茶的安东尼
Bootstrap 是最受欢迎的 HTML、CSS 和 JS 框架,用于开发响应式布局、移动设备优先的 WEB 项目。2011年,twitter的“一小撮”工...
Vue 自动创建的快捷键是 v-model。这个快捷键可以将表单输入元素(input、textarea、select 等)和 Vue 实例中的数据进行双向绑...
1.Application CacheHTML5引入应用缓存,意味着web应用可以进行缓存,即使在没有网络的情况下也能使用。application cache有三个...
在css中,可以使用filter属性来改变图片颜色,例如:使用“filter:grayscale(%);”将图片设置为黑白、“filter: sepia(%);”将图...
css设置div的高度的方法:首先在div标签中添加style属性;然后在style属性中添加height属性并写明固定的高度即可,如【style=hei...
本篇文章主要给大家介绍html中embed 标签的定义及用法。对于HTML学习者来说,标签的使用是至关重要的。那么对于新手来说,除了HT...