jQuery(window).load(function(){
var fulltext_box = jQuery('#postlist .entry:first, .entry-content, #ct div.d');
var fulltext_height = fulltext_box.height();
if(fulltext_height > 1200){
fulltext_box.after('<div class="fulltext_key fulltext_style1"><a href="javascript:;">点击展开全文</a></div>').css({
'max-height':'1200px',
'overflow-y':'hidden',
'position':'relative'
}).append('<div class="fulltext_bg"></div>');
jQuery(document).on('click', '.fulltext_key', function(e) {
jQuery('.fulltext_key,.fulltext_bg').remove();
fulltext_box.css({
'max-height':'inherit',
'overflow-y':'inherit',
'position':'inherit'
});
});
}
});