只获取flash文件中的权重之一,如何处理
第一次使用最新版本,
这就是我所拥有的,我在 Flash 文件中有粗体、粗体、浅体和斜体,我如何在脚本中调用它们,
我想让 h1#logo 使用粗体。
sIFR.replace(gotham, {
selector: 'h1#logo',
css: [
'.sIFR-root { font-size:44px; font-weight:Bold; color:#17140c; text-transform: uppercase; margin: 0 !important;'
]
,filters: {
DropShadow: {
distance: 1
,color: '#f5f5f5'
,strength: 3
,alpha: .5
,blurX: 0
,blurY: 0
}
}
,wmode: 'transparent'
});
first time using the latest build,
here's what i have, i have bold, heavy, lighht and italic in the flash file how do i call them in the script
i'd like to make to h1#logo use the bold weight.
sIFR.replace(gotham, {
selector: 'h1#logo',
css: [
'.sIFR-root { font-size:44px; font-weight:Bold; color:#17140c; text-transform: uppercase; margin: 0 !important;'
]
,filters: {
DropShadow: {
distance: 1
,color: '#f5f5f5'
,strength: 3
,alpha: .5
,blurX: 0
,blurY: 0
}
}
,wmode: 'transparent'
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Flash 可能很挑剔,您尝试过
font-weight:bold
(小写“b”)吗?如果不同粗细的字体系列有不同的变体(例如“Helvetica Bold”),如果您嵌入了多个字体系列,则可能需要明确说明该字体系列。Flash can be picky, did you try
font-weight: bold
(lowercase "b")? If there are different variants of the font family for the different weights ("Helvetica Bold" for example) you may need to explicitly state that font family if you've embedded more than one.