Authored by tmq

字体大小

... ... @@ -752,7 +752,7 @@ define('yohood', function(require, exports) {
'</a>' +
'</div>' +
'<div class="content">' +
'<h2 {titleStyle}>' +
'<h2 {titleStyle} class="volupia">' +
'<a href="' + url + '" title="' + title + '" target="_blank">' + topic + '</a>' +
'</h2>' +
'<a>' + d + '</a>' +
... ...
<?php if(!empty($list)):?>
<?php foreach($list as $news):
$title = Util_StringHelper::substr_cn($news['title'], 90);
$description = Lib_Utils_StringHelper::substr_full_en(Lib_Utils_StringHelper::stripTags($news['content']), 120);
$height = $width = 0;
$thumb_size = json_decode($news['thumb_size'], true);
... ... @@ -52,7 +51,7 @@ $width = 342;
<h2 <?php echo $news['main_title_type'] == 1 ? 'class="volupia"':'';?> style="white-space:nowrap;text-overflow:ellipsis;overflow: hidden;">
<a href="<?php echo url('news/detail' ,array('id' => $news['id']))?>" target="_blank">
<?php
echo $video ? Lib_Utils_StringHelper::substr_full_en($news['title'], 88) : $title;
echo Lib_Utils_StringHelper::substr_full_en(Lib_Utils_StringHelper::stripTags($news['title']), 120);
?>
</a>
</h2>
... ...