1
我希望完成的是編寫一個小的jQuery腳本,它允許我獲取塊的內容並在有人將鼠標放在它上面時觸發彈出窗口。在本質上,它將成爲一個帶有圖像的工具提示。懸停時,工具提示顯示圖像?
我找到的所有教程都是在mouseover上替換圖片,或者是僅包含文本的工具提示。下面是代碼:
$(document).ready(function() {
$('div#block-block-14.block').hover(
function() {
this.tip = this.title;
$(this).append(
'<div class="toolTipWrapper">'
+ '<div class="toolTipContent"></div>'
);
this.title = "";
this.width = $(this).width();
$(this).find('.toolTipWrapper').css({left:this.width-22})
$('.toolTipWrapper').fadeIn(300);
},
function() {
$('.toolTipWrapper').fadeOut(100);
$(this).children().remove();
this.title = this.tip;
}
);
});
這裏是CSS代碼:
div#block-block-14.block{ background:url(../images/QuadChartDropShadow.png);}
.toolTipWrapper{width:175px;position:absolute;top:20px;display:none;color:#FFF;font-weight:bold;font-size:9pt}
.toolTipContent{padding: 8 px 15px; background:url(../images/QuadCharDropShadow.png) no-repeat top;}
絕對是!我給了這個鏡頭,它像一個魅力。非常感謝你,所有。 – Hectron
很高興幫助:) – shennyL