2 种颜色使用跨度对一个元素施加不同的权重
尝试让跨度使用较轻的重量并使用不同的颜色
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个替换已经替换了整个
。对于具有 Light 字体系列的
.thin
,在sIFR.replace()
的css
参数中放入一个新的 CSS 选择器。The first replacement already replaces the entire
<h1>
. Put in a new CSS selector within thecss
argument tosIFR.replace()
for.thin
that has the Light font family.