sIFR:似乎不适用于嵌套 HTML(例如,标记内的 标记)
我有一个 H1 选择器,我将其替换为 sIFR。 在一些 H1 选择器中是 < 强>< /强> 选择器; 例如:
<h1>Hello world, <strong>this is some bold text</strong> and this is normal text</h1>
<< 之外的所有内容 强>< /强> 标签被很好地替换 - 并且 标签内的文本不会显示。 我想对 < 应用不同的样式 强> 文本。 这可能吗?
这是来自 sifr-config.js 的相关 sIFR 代码:
sIFR.replace(avenir_black, {
selector: 'h1',
css: '.sIFR-root { color: #000000; text-transform:uppercase; }',
wmode: 'transparent'
});
我尝试添加此代码,但没有成功:
sIFR.replace(avenir_black, {
selector: 'h1 strong',
css: '.sIFR-root { color: #cc0000; text-transform:uppercase; }',
wmode: 'transparent'
});
I have an H1 selector that I'm replacing with sIFR. Within some of the H1 selectors are < strong>< /strong> selectors; e.g.:
<h1>Hello world, <strong>this is some bold text</strong> and this is normal text</h1>
Everything outside of the < strong>< /strong> tags is replaced fine -- and the text within the tags does not display. I'd like to apply different styling to the < strong> text. Is this possible?
Here is my relevant sIFR code from sifr-config.js:
sIFR.replace(avenir_black, {
selector: 'h1',
css: '.sIFR-root { color: #000000; text-transform:uppercase; }',
wmode: 'transparent'
});
I tried adding this, but no luck:
sIFR.replace(avenir_black, {
selector: 'h1 strong',
css: '.sIFR-root { color: #cc0000; text-transform:uppercase; }',
wmode: 'transparent'
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
我有一个 H1 选择器,我将其替换为 sIFR。 在一些 H1 选择器中是 < 强>< /强> 选择器; 例如:
<h1>Hello world, <strong>this is some bold text</strong> and this is normal text</h1>
<< 之外的所有内容 强>< /强> 标签被很好地替换 - 并且 标签内的文本不会显示。 我想对 < 应用不同的样式 强> 文本。 这可能吗?
这是来自 sifr-config.js 的相关 sIFR 代码:
sIFR.replace(avenir_black, {
selector: 'h1',
css: '.sIFR-root { color: #000000; text-transform:uppercase; }',
wmode: 'transparent'
});
我尝试添加此代码,但没有成功:
sIFR.replace(avenir_black, {
selector: 'h1 strong',
css: '.sIFR-root { color: #cc0000; text-transform:uppercase; }',
wmode: 'transparent'
});
I have an H1 selector that I'm replacing with sIFR. Within some of the H1 selectors are < strong>< /strong> selectors; e.g.:
<h1>Hello world, <strong>this is some bold text</strong> and this is normal text</h1>
Everything outside of the < strong>< /strong> tags is replaced fine -- and the text within the tags does not display. I'd like to apply different styling to the < strong> text. Is this possible?
Here is my relevant sIFR code from sifr-config.js:
sIFR.replace(avenir_black, {
selector: 'h1',
css: '.sIFR-root { color: #000000; text-transform:uppercase; }',
wmode: 'transparent'
});
I tried adding this, but no luck:
sIFR.replace(avenir_black, {
selector: 'h1 strong',
css: '.sIFR-root { color: #cc0000; text-transform:uppercase; }',
wmode: 'transparent'
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sIFR 使
标签内的文本变为粗体。 为了显示文本,需要导出字体的粗体字形。 创建 sIFR Flash 影片时,请确保选择一个字符并将其设置为粗体。
sIFR makes text inside
<strong>
tags bold. For the text to show up, the bold glyphs of the font need to have been exported. When creating the sIFR Flash movie, make sure to select a character and make it bold.