透明度和 SF beta 4

发布于 2024-07-17 03:11:06 字数 289 浏览 7 评论 0原文

我正在使用 Drupal 模块在站点中实现 Sirf。 我有一些问题...

  1. 在测试期间,文本在 Safari 4 beta (win) 中失败,并且在应用透明度时以绿色背景呈现。 毫无疑问是 Safari 或插件问题。 发生了一些糟糕的事情,灯箱覆盖无法覆盖任何 Flash 对象。 我确信你们正在跟踪该错误。

  2. 使用 Flash CS4 导出的字体不起作用。 不知道为什么,我恢复使用在线转换网站之一。 我认为FLA是CS3。 也许可以更新。

I'm implementing sirf in a site using a Drupal module. I have a few issues...

  1. During testing the text fails in Safari 4 beta (win) and renders with a green background when transparency is applied. No doubt a Safari or plug in issue. There are a few crap things happening, the Lightbox overlay fails to cover any Flash objects. I'm sure you guys are tracking that error.

  2. Exported fonts using Flash CS4 don't work. Got no idea why, I reverted to using one of the online conversion sites. I think the FLA is CS3. Maybe this could be updated.

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

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

发布评论

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

评论(2

魔法少女 2024-07-24 03:11:06

Safari 4 / Windows 中的透明度失败绝对是 Safari 的错误。

您使用的是哪个 sIFR 版本? sIFR 2 影片以 CS 3 格式提供,我确实认为 sIFR 3 影片是 Flash 8。

Transparency failing in Safari 4 / Windows in definitely a Safari bug.

Which sIFR version are you using? The sIFR 2 movie is available in a CS 3 format, I do think the sIFR 3 movie is Flash 8.

香草可樂 2024-07-24 03:11:06

sIRF3 并且不使用 Flash CS4(用于编辑)

我遇到了一些标题未在初始页面加载时绘制的问题。 就像在 sIRF 启动之前标题不会在 html 中绘制一样,然后什么也不会出现。

另一个地方是 jQuery 创建了在 sIRF 文本之前绘制阴影,然后当页面移动时它们位于错误的位置。

我已经改变了这个调用...

$('document').ready(function(){
  $('.image-thumbnail img').ready(function(){
    setTimeout( "drawShadow();", 4000) //slow it down to give objects a chance to draw
  });
});


function drawShadow(){
  $('.image-thumbnail').dropShadow({left:2, top:2, blur:2, opacity:0.5});  // Creates new drop shadows
}

我真正需要的是 sIRF 已完成的信号。 有什么线索我可以怎么做吗?

sIRF3 and not working with Flash CS4 (for editing)

I've got some issues with headings not being drawn on the initial page load. Like the heading aren't draw in html before sIRF starts up and nothing then appears.

And another where jQuery created drop shadows draw before the sIRF text then when the page shifts they are in the wrong location.

I've mutated the call to this...

$('document').ready(function(){
  $('.image-thumbnail img').ready(function(){
    setTimeout( "drawShadow();", 4000) //slow it down to give objects a chance to draw
  });
});


function drawShadow(){
  $('.image-thumbnail').dropShadow({left:2, top:2, blur:2, opacity:0.5});  // Creates new drop shadows
}

What I really need is a signal that sIRF has completed. Any clue how I might do that?

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