Я нашел способ удалить фокус, который 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/)