如何格式化文本 to scroll smoothy with an animation?

问题描述 投票:0回答:1

我有这个JSfiddle。这是我网站正在进行的部分。我使用代码片段的问题是,在调整高度,宽度以及最重要的是顶部和左侧定位的CSS百分比值时,文本将无法正确调整大小。我不知道我的定位是否不正确。我不知道何时在什么具体情况下使用什么位置是最好的。

码:

@charset "utf-8";

/* CSS Document */

.Experience_Target {
  display: inline-block;
}

.EXP1Box {
  height: 100vh;
  overflow: hidden;
}

#Hangar {
  top: 0;
  height: 50%;
}

#Virtual {
  top: 0;
  height: 50%;
}

.Hangar {
  background: url(https://s8.postimg.cc/d56er2eut/Hangar_Phot.png);
  height: 50%;
  width: 100%;
  background-position: 75%;
  background-repeat: no-repeat;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.Hangar:hover {
  box-shadow: inset 0 0 0 150vw rgba(0, 0, 0, 0.7);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  transform: scale(1.1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand');
}

.NextEra {
  position: relative;
  width: 0%;
  height: 0%;
  top: 3.5%;
  left: 40%;
  z-index: 1;
  transition: .5s ease;
  -moz-transition: .5s ease;
  -ms-transition: .5s ease;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
}

.Hangar:hover .NextEra {
  position: relative;
  width: 70%;
  height: auto;
  top: 0.0%;
  left: 26.3%;
  z-index: 1;
}

h3 {
  font-family: "Myriad Pro";
  font-size: 63px;
  color: white;
}

h4 {
  font-family: "Myriad Pro";
  font-size: 64px;
  color: white;
}

.Hangar:hover .NextText1 {
  position: relative;
  top: 60%;
  left: -18%;
  z-index: 2;
  font-style: italic;
}

.NextText1 {
  position: relative;
  top: -300%;
  left: 0%;
  z-index: 2;
}

.Hangar:hover .NextText2 {
  position: relative;
  top: -300%;
  left: 2%;
  z-index: 2;
  width: 30%
}

.NextText2 {
  position: relative;
  top: 100%;
  left: 18%;
  z-index: 2;
}
<section class="EXP1Box">
  <div class="Hangar">
    <div class="NextEra">
      <div class="NextEra">
        <img alt="NextEra" src="https://s8.postimg.cc/h1jqn4zv9/Next_Era_Pop.png" class="NextEra">
      </div>

      <div class="NextText1">
        <h4 class="NextText1">Future Ambitions</h4>
      </div>
      <div class="NextText2">
        <h3 class="NextText2">Internship Position With:</h3>
      </div>
    </div>
  </div>

  <div class="Virtual">
  </div>

</section>

我想要发生的是当有人没有在图片上空盘旋时文本变小而离开页面,但是当有人在它上面盘旋时,变大并占据图像的一半 - 类似于动画左侧的NextEra徽标。由于一些奇怪的原因,我暂时无法在当前时刻定位任何文本。任何帮助将不胜感激。

html css html5 text
1个回答
0
投票

我认为你可以选择使用display:nonevisibility:hidden来隐藏文本,而不是使用z-index和过渡。从你的代码中不清楚你是否希望文本在可见时溢出框。我将它放在框中以便全部放在框中。我调整了文字大小,但如果你想要它们更小/更大,你可以调整。我添加了颜色(只是我可以看到它们开始的位置)..再次,可调整。

这是fiddle和片段:

@charset "utf-8";
/* CSS Document */

.Experience_Target {
  display: inline-block;
}

.EXP1Box {
  height: 100vh;
  overflow: hidden;
}

#Hangar {
  top: 0;
  height: 50%;
}

#Virtual {
  top: 0;
  height: 50%;
}

.Hangar {
  background: url(https://s8.postimg.cc/d56er2eut/Hangar_Phot.png);
  height: 50%;
  width: 100%;
  background-position: 75%;
  background-repeat: no-repeat;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /*background-attachment: fixed;
Really wish I could make this work.
Fucks up because of zoom*/
}

.Hangar:hover {
  box-shadow: inset 0 0 0 150vw rgba(0, 0, 0, 0.7);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  transform: scale(1.1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand');
}

.NextEra {
  position: relative;
  width: 0%;
  height: 0%;
  top: 3.5%;
  left: 40%;
  z-index: 1;
  transition: .5s ease;
  -moz-transition: .5s ease;
  -ms-transition: .5s ease;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
}

.Hangar:hover .NextEra {
  position: relative;
  width: 70%;
  height: auto;
  top: 0.0%;
  left: 26.3%;
  z-index: 1;
}

h3 {
  font-family: "Myriad Pro";
  font-size: 63px;
  color: blue;
}

h4 {
  font-family: "Myriad Pro";
  font-size: 64px;
  color: green;
}

.NextText1 {
  color: forestgreen;
  margin-left: 30px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
  font-style: italic;
  visibility: visible;
}

.Hangar:hover .NextText1 {
  /*margin-left: 18%;
  z-index: 2;*/
  visibility: hidden;
}

.Hangar:hover .NextText2 {
  position: fixed;
  visibility: visible;
  top: 10%;
  left: 2%;
  z-index: 2;
  width: 30%;
  margin-left: 18%;
  font-size: 30px;
  color: red;
}

.NextText2 {
  visibility: hidden;
}
<section class="EXP1Box">
  <div class="Hangar">
    <div class="NextEra">
      <div class="NextEra">
        <img alt="NextEra" src="https://s8.postimg.cc/h1jqn4zv9/Next_Era_Pop.png" class="NextEra">
      </div>
      <div class="NextText1">
        <h4 class="NextText1">Future Ambitions</h4>
      </div>
      <div class="NextText2">
        <h3 class="NextText2">Internship Position With:</h3>
      </div>
    </div>
  </div>

  <div class="Virtual">
  </div>

</section>
© www.soinside.com 2019 - 2024. All rights reserved.