【发布时间】:2010-10-15 20:22:11
【问题描述】:
我正在寻找一种方法来删除 Firefox 应用于我的页面的大纲焦点: http://www.bevelite.com.au/test
我已阅读到应用以下内容将解决此问题,但似乎无法将其应用于我的代码:
sIFR.replace(movie, {fixFocus: true});
我的代码:
sIFR.replace(univers47cl, {
selector: 'h1.test',
wmode: 'transparent',
css: [
'.sIFR-root { font-size: 20px; font-weight: 100; color: #000000; text-transform: uppercase; line-height: 20px; margin: 0 0 15px 0; padding: 0; }',
'a { text-decoration: none; }',
'a:link { color: #000000; text-decoration: none; }',
'a:hover { color: #000000; text-decoration: underline; }',
]
});
sIFR.replace(univers47cl, {
selector: 'h1',
wmode: 'transparent',
css: [
'.sIFR-root { font-size: 20px; font-weight: 100; color: #00b9f2; text-transform: uppercase; line-height: 20px; margin: 0 0 15px 0; padding: 0; }',
'a { text-decoration: none; }',
'a:link { color: #00b9f2; text-decoration: none; }',
'a:hover { color: #00b9f2; text-decoration: underline; }',
]
});
谁能看到我可以在哪里应用这个代码?
(此处为 sIRF 文档 > http://wiki.novemberborn.net/sifr3/)
【问题讨论】:
标签: javascript css firefox sifr