sIFR 和 JS 动态内容

发布于 2024-08-18 21:50:28 字数 623 浏览 9 评论 0原文

嗨,我做了一个使用 sIFR 的函数

function sifrz() {
    var geosans = { src: 'sifr3-r436/flash/geosans.swf' };
    sIFR.activate(geosans);
    sIFR.replace(geosans, {
    selector: '#title,#descr',
    css: '.sIFR-root { background-color: #7d7e7e; color: #000000; }, a { color: #000000; }, a:hover { color: #000000; }'
 });
}

,然后我有另一个函数来更改我的标题文本 我尝试使用 sIFR.redraw(); 和 sifrz() 更新文本后重新初始化 sIFR 但这行不通,

function load_title(url, titolo, descr, id_filmato) {
 $("#title").html("Test");
 sIFR.redraw();
    sifrz();
}

你能帮忙吗?

我正在使用 sIFR 版本 3,修订版 436。

谢谢

Hi I made a function to use sIFR

function sifrz() {
    var geosans = { src: 'sifr3-r436/flash/geosans.swf' };
    sIFR.activate(geosans);
    sIFR.replace(geosans, {
    selector: '#title,#descr',
    css: '.sIFR-root { background-color: #7d7e7e; color: #000000; }, a { color: #000000; }, a:hover { color: #000000; }'
 });
}

then I've got another function to change my title text
I tried to reinit sIFR after updating text using sIFR.redraw(); and sifrz()
but it won't work

function load_title(url, titolo, descr, id_filmato) {
 $("#title").html("Test");
 sIFR.redraw();
    sifrz();
}

Can you help?

I'm using sIFR version 3, revision 436.

Thanks

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

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

发布评论

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

评论(2

指尖上的星空 2024-08-25 21:50:28

不熟悉 sIFR,但是如果在 sIFR.redraw 之前移动 sifrz 会发生什么?

Not familiar with sIFR, but what happens if you move the sifrz before the sIFR.redraw?

梦回旧景 2024-08-25 21:50:28

#title#descr 的替换内容分成两部分。然后运行 ​​sIFR.replacements["#title"][0].replaceText("Test") 更改标题影片中的文本。

Split the replacements for #title and #descr into two. Then run sIFR.replacements["#title"][0].replaceText("Test") to change the text in the title movie.

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