JQuery 기반 부동 DIV 알림 정보 표시 및 자동 숨 기기

 
/**
* DIV , ,
* @param string tips ( )
* @param int height
* @param int time ( ), time > 0
* @sample <a href="javascript:void(0);" onclick="showTips( ' ', 100, 3 );"> </a>
* @sample 3 , 100px
* @copyright ZhouHr 2010-08-27
*/
function showTips( tips, height, time ){
var windowWidth = document.documentElement.clientWidth;
var tipsDiv = '<div class="tipsClass">' + tips + '</div>';

$( 'body' ).append( tipsDiv );
$( 'div.tipsClass' ).css({
'top' : height + 'px',
'left' : ( windowWidth / 2 ) - ( tips.length * 13 / 2 ) + 'px',
'position' : 'absolute',
'padding' : '3px 5px',
'background': '#8FBC8F',
'font-size' : 12 + 'px',
'margin' : '0 auto',
'text-align': 'center',
'width' : 'auto',
'color' : '#fff',
'opacity' : '0.8'
}).show();
setTimeout( function(){$( 'div.tipsClass' ).fadeOut();}, ( time * 1000 ) );
}

좋은 웹페이지 즐겨찾기