实际图像调整大小时叠加太大

时间:2017-02-14 02:33:50

标签: html css

很抱歉提出这个基本问题,但是你们可以解决这个问题,这里首先是代码

<!DOCTYPE html>
<html>

<head>
  <style>
    .container {
      position: relative;
      width: 50%;
    }
    .image {
      display: block;
      width: 100%;
      height: auto;
    }
    .overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
      opacity: 0;
      transition: .5s ease;
      background-color: #008CBA;
    }
    .container:hover .overlay {
      opacity: 1;
    }
    .text {
      color: white;
      font-size: 20px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
    }
  </style>
</head>

<body>

  <h2>Fade in Overlay</h2>
  <p>Hover over the image to see the effect.</p>

  <div class="container">
    <img src="img_avatar.png" alt="Avatar" class="image">
    <div class="overlay">
      <div class="text">Hello World</div>
    </div>
  </div>

</body>

</html>

现在这是原始代码(从网上获取)。现在,如果我尝试在此处放置另一张图像并将图像宽度更改为50%(因为图像被拉伸很多,从而制作出非常大的图像)然后尽管图像尺寸减小了,但叠加层的宽度却更大了帮帮我?

0 个答案:

没有答案