我使用的是jQuery UI工具提示,當我將鼠標懸停在幾張圖片上時,這個工具提示被啓用。我爲這個問題附上了一張圖片。我們在粉紅色之後看到的白色邊緣是額外的。任何想法爲什麼它正在形成? 我在過去幾個小時努力尋找它背後的原因。 tooltip example `HTML:這是我的HTML內容 :jQuery UI ToolTip額外寬度問題
CSS: My CSS rules
.ui-tooltip {
padding: 1em;
border: 2px solid $colorBrown;
color: $colorBrown;
margin: 0;
}
.ui-tooltip-content {
padding: 1em;
color: $colorWhite;
background: $colorBrown;
}
.ui-tooltip-content::after {
content: '';
position: absolute;
border-style: solid;
display: block;
color: $colorBrown;
}
.top .ui-tooltip-content::after {
bottom: -10px;
left: 70px;
border-color: $colorBrown transparent;
border-width: 10px 10px 0;
}
JS: The JS function that initiates tooltip
function toolTipInit() {
$('.social-icons span').tooltip({
items: 'a.whatsapp, a.skype',
content: function() {
return $(this).data('content');
},
show: null,
position: {
my: 'center bottom',
at: 'center top-50'
},
tooltipClass: 'top',
open: function(event, ui) {
if (typeof(event.originalEvent) === 'undefined') {
return false;
}
},
close: function(event, ui) {
ui.tooltip.hover(function() {
$(this).stop(true).fadeTo(400, 1);
},
function() {
$(this).fadeOut('400', function() {
$(this).remove();
});
});
}
});
}
`
我沒有看到你在你的問題中引用的圖片。你可以再次添加它嗎? –
對不起。我現在已附上照片。 –