附加多个div并使其具有响应性

时间:2018-08-13 11:17:01

标签: html css responsive

伙计们,

我正在使用HTML和CSS创建加载动画。由于我并不擅长于响应式前端,因此我很难使文本和圈子具有响应性。

我真正想要的是将带有背景图像和文本的div附加到栏中,并使它们具有响应性,以便不移动并保持在同一位置。

这是我要实现的目标: Loading

这是我目前所拥有的代码。我已经尝试修复附件和类似的东西,但是主要问题是当我使用最大高度/宽度时图像会保持缩放,并且文字会根据网站的宽度向右移动。

希望您能帮助我,谢谢您的劝告。

body {
  background: #111 url("");
  background-size: 25vmin;
  background-repeat: no-repeat;
  background-position: center 40%;
  height: 100vh;
  margin: 0;
}

.logo {
  background: url("https://openclipart.org/download/256338/whitecircle.svg");
  background-size: 25vmin;
  background-repeat: no-repeat;
  position: absolute;
  left: 28%;
  bottom: 10vh;
  height: 25vh;
  width: 100px;
  max-width: 150px;
}

h1 {
  color: #fff;
  position: absolute;
  bottom: 20vh;
  left: 35%;
}

.progress {
  width: 400px;
  max-width: 85vw;
  height: 8px;
  position: absolute;
  bottom: 20vh;
  left: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.progress:after {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background: #fff;
  animation: load 5s linear;
}

@-moz-keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-o-keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
<div class="logo"> </div>
<h1 class="title"> Loading </h1>
<div class="progress"> </div>

1 个答案:

答案 0 :(得分:1)

我通常要做的是使一个项目具有响应能力,并且许多部件需要紧密协作,即创建一个容器,其中容纳所有相关的项目。然后在容器中,我使用%对齐项目,以便它们很好地缩放。主容器(在我的示例中为loader)使用vh和vw单位使用宽度和高度。

这是解决此问题的一种方法。我还用用css制作的圆圈替换了SVG。这样,您无需加载图像。这将使您的页面资源减少。让我知道您是否特别想使用SVG,我可以更新示例。

注意:我在loader div中添加了一个浅边框,因此您可以在调整窗口大小时看到其大小。将其复制到页面时将其删除。

body {
  height: 100vh;
  margin: 0;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: relative;
  height: 30vh;
  width: 50vw;
  min-width: 200px;
  min-height: 100px;
  border: 1px solid #444; // added to see the responsiveness
}

.circle {
  width: 55px;
  height: 55px;
  bottom: calc(40% - 27.5px);
  left: -2px;
  position: absolute;
  border: 5px solid white;
  border-radius: 50%;
}

h1 {
  color: #fff;
  position: absolute;
  left: 75px;
  bottom: 32%;
}

.progress {
  position: absolute;
  width: calc(100% - 60px);
  height: 8px;
  bottom: 40%;
  left: 60px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.progress:after {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background: #fff;
  animation: load 5s linear;
}

@-moz-keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-o-keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
<div class="loader">
  <!--<div class="logo"> </div>-->
  <!--<img class="img-logo" src="https://openclipart.org/download/256338/whitecircle.svg">-->
  <div class="circle"></div>
  <h1 class="title">Loading</h1>
  <div class="progress"></div>
</div>