我可以通过 HTML 代码控制小程序字体吗?
我喜欢从小程序外部(JApplet := Swing-Applet)、周围/调用 HTML 代码调整字体大小,就像
<PARAM name="java_arguments" value="-D...">
我依稀记得的那样,有可能调用经典的 Java 应用程序
java -Dsome.font.property=xy proj.App
,我猜有从 -D-switch 到 (J)Applet-params 的映射,但我没有找到概述。当我没记错时,有 10 或 20 种不同的字体设置选项,menufont、tooltipfont、普通字体、对话框字体,并且不容易猜出哪一种影响什么。
由于与编辑 HTML 和重新加载相比,重新编译类、构建新存档和重新加载页面需要更多时间,因此我更愿意在 HTML 中设置字体(等宽)和字体大小。
I like to adjust the font-size from outside the applet (JApplet := Swing-Applet), from the surrounding/calling HTML code, like
<PARAM name="java_arguments" value="-D...">
I remember vaguely, that there is the possibility to call a classical Java-Application with
java -Dsome.font.property=xy proj.App
and I guess there is a mapping from the -D-switch to (J)Applet-params, but I don't find an overview. When I remember correctly, there are 10 or 20 different font settings option, menufont, tooltipfont, normal font, dialog font, and not easy to guess which one influences what.
Since it needs more time to recompile the class, build a new archive and to reload the page than editing the HTML, and reloading that, I would prefer to set the font (monospaced) and font-size in HTML.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过编程方式设置字体,调用从 javascript 到 java 的方法:
并且,,,,如果您有“applet”元素,请将“SCRIPTABLE”属性放入其中:
但是,如果您使用“object”元素...如果
这不起作用:
如果它是一个对象:
You can set the font programatically, calling a method from javascript to java:
And,,,, if you have an "applet" element, put the "SCRIPTABLE" attribute inside:
but, if you use the "object" element....
If this doesn't works:
of if it's an object: