什么可能导致 sIFR 文本在不同系统上显示不同?

发布于 2024-11-14 08:04:11 字数 541 浏览 5 评论 0原文

我几年前使用 sIFR 建立了一个网站。就样式而言,它没有任何真正的改变——只是通过 XML 编辑添加/删除了一些内容。

网站所有者今天给我发电子邮件询问为什么突然有些文本(以 sIFR3 呈现)像这样中断:

problem with sIFRRendering

我无法在我的任何浏览器上重现此内容。他在 FF 和 Safari (Mac) 中都发生过这种情况。我们在同一操作系统上使用相同的浏览器版本。他使用的是 OS X 10.6.6,但在尝试缩小导致该问题的原因时升级到了 10.6.7。他仍然得到“不正确”的版本。我将 Flash 插件降级到他计算机上的确切版本,但我仍然拥有“正确”的版本。他检查了办公室的所有其他计算机,它们也都正确地渲染了它。

因此,在所有这些内容都相同的两个环境中:

  • 操作系统和版本
  • 浏览器版本
  • Flash 播放器/插件版本

还有哪些其他可能性可能导致差异?

There's a website I built a few years ago using sIFR. Nothing's really changed on it at all in terms of styling — just some content added/removed edited via XML.

The site owner emailed me today asking why suddenly some of the text (rendered in sIFR3) is breaking like this:

problem with sIFR rendering

I could not reproduce this on any of my browsers. It was happening to him in both FF and Safari (Mac). We are using the same browser versions on the same OS. He was on OS X 10.6.6 but upgraded to 10.6.7 while were trying to narrow down what would cause it. He still got the "incorrect" version. I downgraded my Flash plugins to the exact version he had on his computer, and I still had the "correct" version. He checked all the other computers at his office, and they all rendered it correctly as well.

So in two environments where all of these things were identical:

  • Operating system and version
  • Browser version
  • Flash player/plugin version

What other possibilities could be causing the discrepancy?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒绊 2024-11-21 08:04:11

我在 IE 中换行了文本字母,但在 FF 中没有换行——但我找到了解决方案。我用了forceSingleLine:true;在我的 sIFR.replace sifr-config.jsp 中的样式。下面是它的使用示例。

sIFR.replace(测试, {
选择器:'h1',
css: '.sIFR-root { 颜色: #cccccc;宽度:100%;文本对齐:左对齐;字母间距:1;}',
wmode: '透明',
强制单行:true;
});

我在这里找到了答案:
http://www.conetrees。 com/2009/10/quickposts/fixing-the-sifr-3-text-wrap-issue/

I had wrapping text letters in IE but not FF -- but I found the solution. I used forceSingleLine: true; in my sIFR.replace styles in sifr-config.jsp. Below is an example of it being used.

sIFR.replace(test, {
selector: 'h1',
css: '.sIFR-root { color: #cccccc; width: 100%; text-align: left; letter-spacing:1;}',
wmode: 'transparent',
forceSingleLine: true;
});

I found the answer here:
http://www.conetrees.com/2009/10/quickposts/fixing-the-sifr-3-text-wrap-issue/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文