1

在我看来,被选中的 sIFRed 文本总是有黑色背景。我的网站设计是深色的(大部分是黑色的)。因此,当使用 select sIFRed 文本时,它看起来没有任何反应,它被选中但没有人能看到,因为站点和选定的文本背景都是黑色的。普通文本根据字体颜色具有白色或某种深绿色。

如何更改选定文本背景的颜色?

4

2 回答 2

0

http://yourpalmark.com/2007/08/13/changeing-selection-color-on-dynamic-textfields/

使用它并再次编译您的字体 .swf。但我会使用 cufon,sifr 太迟钝了!

于 2010-03-20T18:43:45.237 回答
0

这么多年过去了,情况发生了变化。现在最好的方法是省略 sIFR、cufon 和其他,只使用 CSS @font-face。最好的后备例如:

@font-face {
    font-family: 'font-name';
    src: url('fonts/font-name.eot');
    src: url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
         url('fonts/font-name.woff2') format('woff2'),
         url('fonts/font-name.woff') format('woff'),
         url('fonts/font-name.ttf') format('truetype'),
         url('fonts/font-name.svg#fontname') format('svg');
    font-weight: normal;
    font-style: normal;
}

在http://www.fontsquirrel.com/上可以(并且可能会在将来)找到关于它的新鲜事物

于 2015-11-15T21:29:29.530 回答