向 css 类添加不透明度

发布于 2024-11-15 23:32:18 字数 183 浏览 1 评论 0原文

有没有办法在 css 类中设置不透明度,在 jquery 中你可以这样做:

$(result).parent().css({ 'background-color': '#eeeeee', 'opacity': '0.7' })

任何方式?
我需要将这些属性放入 css 类中。

Is there a way to set opacity in a css class, in jquery you could do this:

$(result).parent().css({ 'background-color': '#eeeeee', 'opacity': '0.7' })

any way?
I need to put these to properties in a css class.

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

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

发布评论

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

评论(5

凉月流沐 2024-11-22 23:32:18

当前跨浏览器兼容性需要不同的 CSS 属性。

filter:alpha(opacity=50); // For IE
-moz-opacity:0.5;         // Older versions of Mozilla
-khtml-opacity: 0.5;      // For Safari 1.x (I believe)
opacity: 0.5;             // General usage

就我个人而言,我会坚持使用 jQuery 来为您完成此操作,因为他们已经在考虑多种浏览器的情况下开发了自己的方法。

There are different CSS properties that are currently required for cross-browser compatibility.

filter:alpha(opacity=50); // For IE
-moz-opacity:0.5;         // Older versions of Mozilla
-khtml-opacity: 0.5;      // For Safari 1.x (I believe)
opacity: 0.5;             // General usage

Personally I'd stick with using jQuery to do this for you since they've already developed their method with multiple browsers in mind.

撕心裂肺的伤痛 2024-11-22 23:32:18

要在所有主要浏览器中设置不透明度,请执行以下

HTML:

<div class="opacityElement"></div>

CSS:

.opacityElement {
    filter:alpha(opacity=50);  // IE
    -moz-opacity:0.5;          // Firefox
    -khtml-opacity: 0.5;       
    opacity: 0.5;         
}

To set opacity in all major browsers do the following

HTML:

<div class="opacityElement"></div>

CSS:

.opacityElement {
    filter:alpha(opacity=50);  // IE
    -moz-opacity:0.5;          // Firefox
    -khtml-opacity: 0.5;       
    opacity: 0.5;         
}
梦里的微风 2024-11-22 23:32:18

像这样:

.myClass{
  opacity:0.4;
  filter:alpha(opacity=40);
}

filter:alpha(opacity=40); 适用于 IE

Like this:

.myClass{
  opacity:0.4;
  filter:alpha(opacity=40);
}

The filter:alpha(opacity=40); is for IE

遗弃M 2024-11-22 23:32:18

是的,与使用 jQuery 完成的方式完全相同:

.className { opacity: 0.7 }

但请注意,这在 Internet Explorer 中不起作用,因此您需要添加另一个属性 过滤器:alpha(不透明度=70)

Yes, exactly the same way as you've done it with jQuery:

.className { opacity: 0.7 }

Note however that this will not work in Internet Explorer, so you need to add another property, filter: alpha(opacity=70)

梦年海沫深 2024-11-22 23:32:18

不存在 CSS 类这样的东西(HTML 有类,CSS 有类选择器)。听起来你的意思是 CSS 规则集。

some selector {
    opacity: 0.7;
}

There is no such thing as a CSS class (HTML has classes, CSS has class selectors). It sounds like you mean a CSS rule-set though.

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