我想为工具提示创建一个自定义的CSS类,它将包装一个长度超过25-30的字符串。通常这样的长文本不适合tootltip文本区域。
无论如何使用Tooltip (ui.bootstrap.tooltip)进行此操作? 就像使用自定义CSS类来获得所需的输出一样。
这是简单的css工具提示 - Plunker DEMO
以下是相同的代码段:
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
max-width:100px;
padding:15px;
min-height:30px;
background:#fff;
visibility: hidden;
border: 1px solid black;
color: #000;
text-align: center;
border-radius: 6px;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
<body style="text-align:center;">
<p>Move the mouse over the text below:</p>
<div class="tooltip">Hover over me 1
<span class="tooltiptext">Tooltip text</span>
</div>
<div class="tooltip">Hover over me 2
<span class="tooltiptext">Array [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,11,1,1,1,11,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1]</span>
</div>
</body>
答案 0 :(得分:1)
CSS解决方案
手头的问题有一个非常简单的解决方案。我基本上添加的是以下CSS代码
word-wrap:break-word;
到您的工具提示文字周围的类。
此外,这是一个很好的read
如果我使用Angular UI会怎样?
为了从angular ui设置工具提示样式,我在工具提示代码中添加了tooltip-class="tooltip"
。
答案 1 :(得分:1)
以下是bootstrap中自定义工具提示的完整代码
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
$("[data-toggle=tooltip]").tooltip();
});
</script>
<style>
.tooltip.top .tooltip-inner {
background-color:red;
}
.tooltip.top .tooltip-arrow {
border-top-color: red;
}
.tooltip.right .tooltip-inner {
background-color:blue;
}
.tooltip.right .tooltip-arrow {
border-right-color: blue;
}
.tooltip.bottom .tooltip-inner {
background-color:green;
width:400px;
height:50px;
padding-top:10px;
}
.tooltip.bottom .tooltip-arrow {
border-bottom-color: green;
}
.tooltip.left .tooltip-inner {
background-color:yellow;
}
.tooltip.left .tooltip-arrow {
border-left-color: yellow;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Colored Tooltip</h1>
</div>
<div class="col-sm-3">
<h3>Top</h3>
<a href="#" data-toggle="tooltip" title="This tooltip is on top!">Hover to see my tooltip</a>
</div>
<div class="col-sm-3">
<h3>Right</h3>
<a href="#" data-placement="right" data-toggle="tooltip" title="This tooltip is on the right!">Hover to see my tooltip</a>
</div>
<div class="col-sm-3">
<h3>Bottom</h3>
<a href="#" data-placement="bottom" data-toggle="tooltip" title="This tooltip is on the bottom!">Hover to see my tooltip</a>
</div>
<div class="col-sm-3">
<h3>Left</h3>
<a href="#" data-placement="left" data-toggle="tooltip" title="This tooltip is on the left!">Hover to see my tooltip</a>
</div>
</div>
</div>
</body>
</html>
答案 2 :(得分:0)
您可以创建一些使用css技巧,根据内容调整工具提示的大小。
以下是宽度和高度假设的一些示例。
.tooltip{
max-width:100px;
padding:15px;
min-height:30px;
background:#000;/*change accordingly*/
}
在css之上将创建一个div,其中包含最大宽度和可调整高度,适合您的内容。
答案 3 :(得分:0)
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
max-width:100px;
padding:15px;
min-height:30px;
background:red;
visibility: hidden;
border: 1px solid black;
color: #000;
text-align: center;
border-radius: 6px;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
<body style="text-align:center;">
<p>Move the mouse over the text below:</p>
<div class="tooltip">Hover over me 1
<span class="tooltiptext">Tooltip text</span>
</div>
<div class="tooltip">Hover over me 2
<span class="tooltiptext">Array [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,,1,11,1,1,1,11,1,,1,1,1,1,1,1,1,1,1,1,1,1,1,1]</span>
</div>
</body>