提示 向下气泡
作者:chrispy
//提示 向下气泡function promptBottom(div){$(div).live('hover',function(){var $prompt = $(this).find('.prompt');var $divWidth = $(div).width();var $promptWidth = $prompt.outerWidth();var $promptHeight = $prompt.outerHeight();var le
//提示 向下气泡
function promptBottom(div){
$(div).live('hover',function(){
var $prompt = $(this).find('.prompt');
var $divWidth = $(div).width();
var $promptWidth = $prompt.outerWidth();
var $promptHeight = $prompt.outerHeight();
var left = ($promptWidth - $divWidth) / 2;
var bottom = $promptHeight + 10;
$prompt.css({'left': - left,'bottom':- bottom});
$prompt.filter(':not(:animated)').fadeIn(); //查找当前未处于运动状态下标签显示
});
$(div).live('mouseout',function(){
var $prompt = $(this).find('.prompt');
$prompt.hide();
});
}