我尝试使用插件jauery,女巫有像
这样的css代码.icon-eye:before {
content: '\56';
}
在插件网站上 - 就像眼睛一样。但是当我在我的本地电脑上安装这个插件时 - 我有'V',但没有眼睛图标。请帮忙,如何解决它。 Thaks。 Plugin
答案 0 :(得分:2)
使用图标字体,请参阅custom2.css的开头:
@font-face {
font-family: 'entypo-selected';
src: url("../font/entypo-selected.eot");
src: url("../font/entypo-selected.eot?#iefix") format('embedded-opentype'), url("../font/entypo-selected.woff") format('woff'), url("../font/entypo-selected.ttf") format('truetype'), url("../font/entypo-selected.svg#entypo-selected") format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'entypo-selected';
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
line-height: 1em;
}
.icon-eye:before { content: '\56'; } /* 'V' */
答案 1 :(得分:0)
确保所有库都已正确安装,请阅读文档和安装指南并按照说明进行操作。