我试图将我的工具提示气泡居中但没有成功:(我猜这个解决方案很简单,但我无法实现它。有人可以帮我吗?THX !在这里摆弄
我的代码:
$(document).ready(function(){
$(".menu .a").hover(function() {
var checkWidth = $(this).outerWidth() - $(this).outerWidth()/2;
$(this).next("em").css({left:checkWidth}).animate({opacity: "show"}, "slow");
}, function() {
$(this).next("em").animate({opacity: "hide"}, "fast");
});
});