/*信息标题多行文本展现js*/ $(function(){ $('.column-cover').each(function(){ var lioriginh = 0; var fixedheight = $(this).outerheight(); var lilineheight = parseint($(this).find("li").eq(0).css("line-height")); $(this).find('li').each(function(){ var liheight = $(this).outerheight(); var num = $(this).index(); lioriginh += liheight; if(lioriginh>=fixedheight){ if(lioriginh>fixedheight){ $(this).addclass('white'); $(this).append('...'); var t = $(this).outerheight()-(lioriginh-fixedheight)-lilineheight; $(this).find('ins').css('top',t) } $(this).hover(function(){ $(this).removeclass('white'); $(this).find('ins').css('display','none'); $(this).parent('ul').stop().animate({'top':-(lioriginh-fixedheight)},300) },function(){ $(this).addclass('white'); $(this).find('ins').css('display','block'); $(this).parent('ul').stop().animate({'top':0},300) }) return false; } }) }) });