bootstrap自定义提示框

bootstrap自定义提示框

http://www.runoob.com/bootstrap/bootstrap-tutorial.html bootstrap菜鸟教程

bootstrap Tooltip插件,显示自定义提示框不好用,.....

下面: 鼠标移入,显示自定义提示框

<!DOCTYPE html>
<html>
<head>
<title>custom tip</title>
<link href="bootstrap3/css/bootstrap.min.css" rel="stylesheet"/>
<link href="bootstrap3/css/bootstrap-theme.min.css" rel="stylesheet"/>
<script src="jquery.js"></script>
<script src="bootstrap3/js/bootstrap.min.js"></script>
<style type="text/css">
	.popover{
		max-width: 400px;
	}
</style>
<script type="text/javascript">
	$(function(){
		$("[rel=drevil]").popover({
			trigger:'manual',
			placement : 'right',
			title : '<div style="font-size:14px;">title</div>',
			html: 'true',
			content: function() {
				return $(this).attr('data-contentStr');
			},
			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")
				}
			}, 100);
		});
	});
</script>
</head>
<body>
<div style="margin-top:120px;">
<a href="#" rel="drevil"
	data-contentStr="
		<table style='width:auto;height:auto;line-height:30px;text-line:1px;font-size:14px;'>
			<tr><td align='right'>language:</td><td>java aaaaaaaaaaaaaaaaaaaaaaaaaaaa</td></tr>
			<tr><td align='right'>page:</td><td>html</td></tr>
			<tr><td align='right'>message:</td><td>kafka</td></tr>
			<tr><td align='right'>cache:</td><td>redis</td></tr>
		        <tr><td align='right'>db:</td><td>mysql</td></tr>
			<tr><td align='right'>frame:</td><td>spring</td></tr>
		</table>
	">show custom tip when mouse enter</a>
</div>			
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值