我想在Google Web Toolkit Web应用程序中使用自定义字体。我已尝试按照https://code.google.com/p/gwt-webfonts/提供的文档/代码,但我仍然遇到问题。我并不完全明白我需要做什么。
我有:
创建了ClientBundle的扩展名:
import com.google.gwt.dev.javac.testing.impl.MockResource;
import com.google.gwt.dev.resource.impl.FileResource;
import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.ClientBundle.Source;
import com.google.gwt.resources.client.CssResource;
import com.google.gwt.core.client.GWT;
public interface MainClientBundle extends ClientBundle
{
@Source("LesJoursHeureux.otf")
public FontResource myFont();
};
在我的ui.xml文件中,我添加了对字体资源的引用:
<ui:style type='com.example.TopMenuView.TopMenuViewStyle'>
.maintitle {
font-family: value('myFont.getFontName');
}
</ui:style>
这是我不知道该怎么做的地方。在我的TopMenuView.java类中,我包含了这个片段:
private static MainClientBundle MY_RESOURCES = GWT.create(MainClientBundle.class);
{
MY_RESOURCES.myFont().ensureInjected();
}
当我尝试构建项目时,收到此错误:
Creating assignment for style()
[java] Performing substitution in node font-family : .....
[java] [ERROR] Could not find no-arg method named myFont in type com.example.TopMenuView_TopMenuViewUiBinderImpl_GenBundle
编辑:我正在使用版本2.6.0的GWT SDK。
答案 0 :(得分:4)
这是一个没有任何外部库的解决方案。
首先,在DataResource
中声明MainClientBundle.java
:
@MimeType("application/font-sfnt") // use appropriate mime type depending on font file format
@Source("aller/aller_rg-webfont.ttf")
DataResource allerRegularTtf();
使用GSS(GWT&gt; = 2.7.0)在您的css文件中导入DataResource
:
@def ALLER_REGULAR_TTF resourceUrl("allerRegularTtf");
或使用经典CssResource(GWT <2.7.0):
@url ALLER_REGULAR_TTF allerRegularTtf;
在.css
文件中,声明@font-face
并使用它:
@font-face {
font-family: "AllerRegular";
src: ALLER_REGULAR_TTF format("truetype");
}
.myClass {
font-family: "AllerRegular";
}
答案 1 :(得分:0)
SPGs答案是最好的,但是,如果你不想搞乱GWT资源包,可以将你的字体放在war目录中,然后在你的index.html中定义字体:
<style type="text/css">
@font-face {
font-family: MyFont;
src: url(myfont.ttf);
}
</style>
然后将字体系列设置为MyFont(或其他任何名称)。例如:
myLabel.getElement().getStyle().setProperty("fontFamily", "MyFont");