sIFR 和改变背景
大家好,我正在使用此代码动态更改我的 sIFR(版本 3)H1 和 H2 标签(感谢 Mark Wubben 提供的代码),但我需要在同一函数中更改我的 H2 背景颜色..任何人都可以帮忙我让代码工作吗? 显然 sIFR 和 changeCSS 不适用于背景颜色..
function changeColor(hexValue) {
var css1 = '.sIFR-root { color: '+ hexValue +'; }';
var css2 = '.sIFR-root { color: #080808; background-color: '+hexValue+'; }';
for (var i = 0; i < sIFR.replacements['h1'].length; i++) {
sIFR.replacements['h1'][i].changeCSS(css1);
};
for (var i = 0; i < sIFR.replacements['h2'].length; i++) {
sIFR.replacements['h2'][i].changeCSS(css2);
};
};
Hey all, I'm using this code to change my sIFR (version 3) H1 and H2 tags dynamically (thanks to Mark Wubben for the code), but I need to change my H2 background color in the same function.. Can anyone help me get the code working? Apparently sIFR and changeCSS doesn't work for background colors..
function changeColor(hexValue) {
var css1 = '.sIFR-root { color: '+ hexValue +'; }';
var css2 = '.sIFR-root { color: #080808; background-color: '+hexValue+'; }';
for (var i = 0; i < sIFR.replacements['h1'].length; i++) {
sIFR.replacements['h1'][i].changeCSS(css1);
};
for (var i = 0; i < sIFR.replacements['h2'].length; i++) {
sIFR.replacements['h2'][i].changeCSS(css2);
};
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sIFR 仅支持整个 Flash 影片的背景颜色,并且以后无法更改。
最好的办法是启用替换的透明度,并设置被 sIFR 替换的 HTML 元素的背景颜色(
)。 不过,建议您仅在绝对必要时才使用透明度,并且请记住,Linux 基本上不支持透明度。 它将回退到指定的背景颜色。
sIFR only supports a background color for the entire Flash movie, and this can't be changed later.
Your best bet is to enable transparency for the replacements, and set the background color on the HTML element replaced by sIFR (the
<h2>
). You're advised however to use transparency only when strictly necessary, and please keep in mind that transparency is largely unsupported on Linux. It will fall back to the specifiedbackground-color
instead.