元素(背景图像)不透明度,但没有边框不透明度

时间:2012-07-11 23:32:25

标签: javascript html css html5 css3

我知道怎么做border opacity,怎么做background image opacity,但我希望有一个元素没有边框不透明度,有背景图像不透明度。我不想在图像编辑器中修改图像,所以我正在寻找CSS设置的不透明度。可能的?

在我的CSS下面,我想修改带有清晰无遮挡边框的“禁用”状态。请建议......

使用示例:this fiddle


按钮样式:

  div.button, div.button:hover
  {
    background: none;
    border: 2px solid #6C7B8B;
    border-radius: 8px;
    clear: none;
    color: transparent;
    cursor: pointer;
    display: inline-block;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    float: none;
    height: 24px;
    margin-bottom: 0px;
    margin-left: 3px;
    margin-right: 0px;
    margin-top: 7px;
    opacity: 1;
    -moz-opacity: 1;
    outline: none;
    overflow: hidden;
    padding: none;
    vertical-align: top;
    width: 24px;
  }

点击效果:

  div.button:active
  {
    left: 1px;
    position: relative;
    top: 1px;
  }

状态为DISABLED的额外样式:

  div.disabled, div.disabled:hover
  {
    cursor: default;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    opacity: 0.50;
    -moz-opacity: 0.50;
  }

  div.disabled:active
  {
    left: 0px;
    position: relative;
    top: 0px;
  }

状态为ON的额外样式:

  div.on, div.on:hover
  {
    border: 2px solid #007FFF;
  }

2 个答案:

答案 0 :(得分:2)

您与CSS: set background image with opacity?处境相同 - 您希望拥有透明背景,但不透明内容(边框计数对象)。

因此在CSS3中没有这样的background-image-opacity,你只能构建一个透明图像或者将两个元素放在彼此之上,下面包含图像(如答案所示)。

但在你的情况下,遮住图像就足够了。例如,可以通过从头开始使用透明图像来完成,但更改底层background-color。或者你使用

<div class="button" title="Zoom!"><img src="icon.gif" alt="glasses" /></div>

div.button.disabled img { opacity: .5; }

在语义上也更有意义。你应该远离那些内联样式。

updated fiddle

答案 1 :(得分:1)

您可以通过放置在按钮顶部的半透明伪元素来调暗背景图像,但不是边框:

enter image description here

  div.button {
    ...
    position: relative;
  }

  div.disabled:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: rgba(255,255,255,0.7);
    border-radius: 6px;
  }

请注意,我建议这只是因为我喜欢挑战,我仍然认为Bergi的答案是做到这一点的“正确方法”。

http://jsfiddle.net/NECyg/