只获取flash文件中的权重之一,如何处理

发布于 2024-08-09 17:33:04 字数 526 浏览 4 评论 0原文

第一次使用最新版本,

这就是我所拥有的,我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

誰認得朕 2024-08-16 17:33:04

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文