我已经尝试了很多人在网站、论坛上提出的建议。(激活工具提示)但我仍然没有成功。我在自己的布局文件中添加了这个编码。视图/布局
导航栏小部件编码
'items' => [
[
'label' => '<span style="font-size:1.3em;" class="glyphicon glyphicon-cog"></span>',
'url' => ['/site/controlPanel'],
'options' =>[
'data-toggle' => 'tooltip',
'data-placement' => 'tooltip',
'title' =>'Control Panel',
'class' => 'tooltipStyle'
],
],
[
'label' => '<span style="font-size:1.3em;" class="glyphicon glyphicon-tasks"></span>',
'url' => ['/site/controlPanel'],
'options' =>[
'data-toggle' => 'tooltip',
'data-placement' => 'tooltip',
'title' =>'Day Summary',
'class' => 'tooltipStyle'
],
],
CSS
.tooltipStyle + .tooltip > .tooltip-inner {
background-color: #000;
}
.tooltipStyle + .tooltip > .tooltip-arrow {
border-bottom-color:#ff0;
}
最终我只想像这样出去
在对我的编码进行了一些修改之后,显示了这个输出。