我对AngularJS相当陌生,并致力于一个对外部依赖性非常严格的项目;实际上,Bootstrap被排除了,但是,我必须实现一个"工具提示"指令。
我尝试使用mouseenter和mouseleave事件来尝试,但我想知道如何使用指令的属性作为工具提示的内容?
它可以像这样使用:
<a id='someLink' my-tooltip='The content that I want to show'>Trigger</a>
在UI开发方面非常环保,任何人都可以告诉我如何通过指令添加必要的HTML / CSS来使其工作吗?
答案 0 :(得分:1)
<强> DEMO 强>
app.directive("tooltip", function () {
return {
link: function (scope, element, attrs) {
$(element).on("mouseover", function () {
$(this).append("<span>"+ attrs.tooltip +"</span>");
});
$(element).on("mouseout", function () {
$(this).find("span").remove();
});
scope.$on("$destroy", function () {
$(element).off("mouseover");
$(element).off("mouseout");
});
}
};
});
CSS Source
a.tooltips {
position: relative;
display: inline;
}
a.tooltips span {
position: absolute;
width:140px;
color: #FFFFFF;
background: #000000;
height: 30px;
line-height: 30px;
text-align: center;
visibility: hidden;
border-radius: 6px;
}
a.tooltips span:after {
content: '';
position: absolute;
top: 50%;
right: 100%;
margin-top: -8px;
width: 0; height: 0;
border-right: 8px solid #000000;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
}
a:hover.tooltips span {
visibility: visible;
opacity: 0.8;
left: 100%;
top: 50%;
margin-top: -15px;
margin-left: 15px;
z-index: 999;
}
答案 1 :(得分:0)
这是我使用的较短版本:
PIAPP.directive('piTooltip', function(){
return function($scope, element, attrs){
element.append('<u>'+attrs.piTooltip+'</u>');
};
});
CSS:
*[pi-tooltip]>u{
visibility: hidden;
opacity: 0;
font-size: 12px;
padding: 0 5px;
background: #f6e6c2;
border: 1px solid #000;
color: #000;
z-index: 1000;
white-space: nowrap;
text-decoration: none;
position: absolute;
bottom: -2em;
left: 0;
transition: opacity 0.5s linear 0.5s, visibility 0s;
}
*[pi-tooltip]:hover>u{
visibility: visible;
opacity: 1;
}
您可以在任何容器(a,span,div等)中使用它,如下所示:
<div pi-tooltip="The content that I want to show">...</div>
显示演示号Fiddle