0
我想從我的控制器錨如何使用笨
內顯示的通知在我的控制器顯示錨內通知我有這個數組保存到
$data['table_data'];
,然後由調用$data_table
$this->table->add_row($cellCl,$cellT,$cellE,$cellA,$cellTR,
anchor('notifications/print/'.$reg->id,'.',array('class'=>'img1')).'
'.anchor('notifications/write/'.$reg->id,'.',array('class'=>'img2')).'
'.anchor('notifications/read/'.$reg->id,'.',array('class'=>'notification'))
);
顯示在我的觀點,我想展示一些東西像什麼是錨內的片段,顯示IM通知年齡(而不是顯示通知圖像)。
a.fa-globe {
position: relative;
font-size: 2em;
color: grey;
cursor: pointer;
}
span.fa-comment {
position: absolute;
font-size: 0.6em;
top: -4px;
color: red;
right: -4px;
}
span.num {
position: absolute;
font-size: 0.3em;
top: 1px;
color: #fff;
right: 2px;
}
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" />
<a class="fa fa-globe">
<span class="fa fa-comment"></span>
<span class="num">2</span>
</a>