我有一些关于字体系列的问题。
我的应用程序中有 6 个品牌,对于每个品牌,我需要使用 6 种不同的字体显示。
在脚本标签内,
我必须检查这样的条件,
if(selectedbrand=="Brand1")
{
$('body').css({
"font-family":'Conv_SF Slapstick Comic'
});
}
我将@font-face 保存在单独的 css 中,例如,
@font-face {
font-family: 'Conv_SF Slapstick Comic';
src: url('fonts/SF Slapstick Comic.eot');
src: local('SF Slapstick Comic'), url('fonts/SF Slapstick Comic.woff') format('woff'), url('fonts/SF Slapstick Comic.ttf') format('truetype'), url('fonts/SF Slapstick Comic.svg') format('svg');
font-weight: normal;
font-style: normal;
}
但是 font-family 不适用,因为它采用的是普通的 jQuery CSS 字体。
请尽早向我推荐一个解决方案。