无法改变图像的不透明度。

时间:2022-12-30 18:51:26

I am trying to change the opacity of my images, so that I can use a hover affect later on, to change the opacity back, creating a cool affect. The problem is the opacity attribute doesn't work! I can't seem to figure out the solution. Is it possible that Bootstrap is preventing this somehow?

我试着改变图像的不透明度,这样我就可以在以后使用鼠标悬停的效果,改变不透明度,从而产生一个很酷的效果。问题是不透明度属性不起作用!我似乎想不出解决办法。有可能是Bootstrap阻止了这一点吗?

My HTML:

我的HTML:

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <!-- Required meta tags always come first -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta http-equiv="x-ua-compatible" content="ie=edge">

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">
    <link rel="stylesheet" href="css/style.css">
    <link href="https://fonts.googleapis.com/css?family=Oswald:300,400" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Prociono" rel="stylesheet">
    <link rel="stylesheet" href="font-awesome/css/font-awesome.css">

</head>
<body>
    <!-- HEADER -->
    <section id="header">

        <h1 class="name">Jessica Shae</h1>


        <div class="container heading">
            <div class="row">

                <div class="col-md-4">
                    <img src="img/7.jpg" class="display">
                </div>
                <div class="col-md-4">
                    <img src="img/2.jpg" class="display">
                </div>
                <div class="col-md-4">
                    <img src="img/9.jpg" class="display">
                </div>

        <div class="row">
                <div class="col-md-12 text-xs-center">
                    <a href="#gallery"<i class="fa fa-chevron-down fa-3x" aria-hidden="true"></i></a> 

                </div>
            </div>

    </section>

    <!-- Gallery -->

    <section id="gallery">

        <h2 class="title">The Dark Room</h2>

        <div class="container photo-collection">
            <div class="row">

                <div class="col-md-4 affect">
                    <img src="img/1.jpg" class="work">
                </div>
                <div class="col-md-4 affect">
                    <img src="img/10.jpg" class="work">
                </div>
                <div class="col-md-4 affect">
                    <img src="img/4.jpg" class="work">
                </div>
            </div>

            <div class="row">

                <div class="col-md-4 affect">
                    <img src="img/18.jpg" class="work">
                </div>
                <div class="col-md-4 affect">
                    <img src="img/6.jpg" class="work">
                </div>
                <div class="col-md-4 affect">
                    <img src="img/8.jpg" class="work">
                </div>
            </div>

            <div class="row">

                <div class="col-md-4 affect">
                    <img src="img/12.jpg" class="work">
                </div>
                <div class="col-md-4 affect">
                    <img src="img/11.jpg" class="work">
                </div>
                <div class="col-md-4 affect">
                    <img src="img/14.jpg" class="work">
                </div>
            </div>

        </div>

    </section>

And my CSS: (the opacity attribute is in .affect)

我的CSS:(不透明度属性在。affect中)

    * {
      /*background-color: rgb(0, 0, 0);*/
      background: #070606;
    }

    /* HEADER */

    .display {
        height: auto;
        width: 500px;
        box-sizing: border-box;
        overflow: hidden;
        overflow-x: hidden;
        max-width: 100%;
        border: 4px solid white;
        border-radius: 6%;
    }

    .heading {
        max-width: 100%;
    }

    .name {
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
        font-size: 500%;
        font-weight: 100;
        text-align: center;
        color: whitesmoke;
        width: 100%;
        margin-bottom: 20px;
        margin-top: 15px;
    }

    h1:after {
        display: block;
        height: 2px;
        background-color: #e62222;  /*Great way to give single line color */
content: " ";
        width: 100px;
        margin: 0 auto;
        margin-top: 20px;
    }

    .fa {
        margin-top: 18px;
    }

    .fa:link, /*Prevents color change when clicked */
    .fa:visited {
        text-decoration: none;
        color: #bdc3c7;
    }

    .fa:hover,
    .fa:active {
        color: #ebedee;
    }

    /* GALLERY */

    .work {
        width: 300px;
        height: 100%;
        margin-top: 50px;
        border: 3px solid white;
    }

    .title {
        font-family: 'Prociono', serif;
        font-size: 350%;
        color: whitesmoke;
        text-align: center;
        padding-top:40px;

    }

    .affect img {
        opacity: 1;
        background-color: #070606;
    }

2 个解决方案

#1


1  

You need to have a base state, and a hover state for your image. Change your CSS to:

您需要有一个基本状态,和一个鼠标悬停状态为您的映像。改变你的CSS来:

    .affect img {
      opacity: 0.2;
      background-color: #070606;
      transition: opacity .35s;
    }

    .affect:hover img {
      opacity: 1;
    }

This creates the hover effect.

这就产生了悬停效果。

#2


0  

Opacity default value is 1 try making it 0.5.

不透明度默认值为1,尝试将其设置为0.5。

#1


1  

You need to have a base state, and a hover state for your image. Change your CSS to:

您需要有一个基本状态,和一个鼠标悬停状态为您的映像。改变你的CSS来:

    .affect img {
      opacity: 0.2;
      background-color: #070606;
      transition: opacity .35s;
    }

    .affect:hover img {
      opacity: 1;
    }

This creates the hover effect.

这就产生了悬停效果。

#2


0  

Opacity default value is 1 try making it 0.5.

不透明度默认值为1,尝试将其设置为0.5。