2 种颜色使用跨度对一个元素施加不同的权重

发布于 2024-08-10 05:41:40 字数 747 浏览 3 评论 0原文

尝试让跨度使用较轻的重量并使用不同的颜色

sIFR.replace(xxx, { 选择器:'h1#logo', CSS:[ '.sIFR-root { 字体大小:44px;字体粗细:粗体;字体系列:Gotham Bold;颜色:#17140c;字母间距:-2;文本转换:大写;边距:0!重要;' ]

,过滤器:{ 阴影:{ 距离:1 ,颜色: '#f5f5f5' ,强度:2 ,阿尔法: .5 ,模糊X: 0 ,blurY: 0

    }
  }

,wmode: '透明' });

sIFR.replace(xxx, { 选择器:'h1#logo span.thin', CSS:[ '.sIFR-root { 字体大小:14px;字体系列:Gotham Light!重要;颜色:#ddd;字母间距:-2;文本转换:大写;边距:0!重要;' ]

,过滤器:{ 阴影:{ 距离:1 ,颜色: '#f5f5f5' ,强度:2 ,阿尔法: .5 ,模糊X: 0 ,blurY: 0

    }
  }

,wmode: '透明' });

trying to get the span to use the lighter weigth and be a different color

sIFR.replace(xxx, {
selector: 'h1#logo',
css: [
'.sIFR-root { font-size:44px; font-weight:Bold; font-family : Gotham Bold; color:#17140c; letter-spacing:-2; text-transform: uppercase; margin: 0 !important;'
]

,filters: {
DropShadow: {
distance: 1
,color: '#f5f5f5'
,strength: 2
,alpha: .5
,blurX: 0
,blurY: 0

    }
  }

,wmode: 'transparent'
});

sIFR.replace(xxx, {
selector: 'h1#logo span.thin',
css: [
'.sIFR-root { font-size:14px; font-family : Gotham Light !important; color:#ddd; letter-spacing:-2; text-transform: uppercase; margin: 0 !important;'
]

,filters: {
DropShadow: {
distance: 1
,color: '#f5f5f5'
,strength: 2
,alpha: .5
,blurX: 0
,blurY: 0

    }
  }

,wmode: 'transparent'
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

み格子的夏天 2024-08-17 05:41:40

第一个替换已经替换了整个

。对于具有 Light 字体系列的 .thin,在 sIFR.replace()css 参数中放入一个新的 CSS 选择器。

The first replacement already replaces the entire <h1>. Put in a new CSS selector within the css argument to sIFR.replace() for .thin that has the Light font family.

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