我有这个jquery:
this.tooltip = function(){
/* CONFIG */
xOffset = 10;
yOffset = 20;
// these 2 variable determine popup's distance from the cursor
// you might want to adjust to get the right result
/* END CONFIG */
$("a.tooltip").hover(function(e){
this.t = this.title;
this.title = "";
$("body").append("<p id='tooltip'>"+ this.t +"</p>");
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
},
function(){
this.title = this.t;
$("#tooltip").remove();
});
$("a.tooltip").mousemove(function(e){
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px");
});
};
// starting the script on page load
$(document).ready(function(){
tooltip();
});
用于名为“tooltip”的CSS类,其中包含font-variant:small-caps;
。
所有工具提示都是小型的,看起来很棒:)
工具提示的调用方式如下:
<a href="#" class="tooltip" title="this is the tooltip">hover to see tooltip</a>
我想在工具提示BOLD和全部小写中有一两个单词.. 如何解决工具提示的重置问题,我怎么能这样做呢?
所以不要显示为:
这是工具
我想:
这是THE TOOLTIP
任何想法??
答案 0 :(得分:0)
您可以将某个类添加到要添加的文本中,然后通过CSS设置样式。 例如
$("a.tooltip").hover(function(e){
this.t = this.title;
this.title = "";
$("body").append("<p id='tooltip' class='tooltipText'>"+ this.t +"</p>");
$("#tooltip")
.css("top",(e.pageY - xOffset) + "px")
.css("left",(e.pageX + yOffset) + "px")
.fadeIn("fast");
},
然后是css:
.tooltipText
{
text-transform: uppercase;
/* any style you want */
}