sIFR 和 JS 动态内容
嗨,我做了一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不熟悉 sIFR,但是如果在 sIFR.redraw 之前移动 sifrz 会发生什么?
Not familiar with sIFR, but what happens if you move the sifrz before the sIFR.redraw?
将
#title
和#descr
的替换内容分成两部分。然后运行 sIFR.replacements["#title"][0].replaceText("Test") 更改标题影片中的文本。Split the replacements for
#title
and#descr
into two. Then runsIFR.replacements["#title"][0].replaceText("Test")
to change the text in the title movie.