2
我在CSS動畫中有一些行爲不當的文本。CSS動畫後文本移動中心
該文本顯示爲「鍵入」自身,然後以閃爍的光標結束。它可以很好地完成這項工作,但是當完成時,輸入一行可能會「漂浮」或「移動」到頁面中心。
我正在將文本與text-align: center;
以及flexbox(使其位於頁面的中心)對齊。
下面是一些代碼:
html, body {
height: 100%;
width: 100%;
}
body {
overflow-x: hidden;
overflow-y: hidden;
}
.do-you-even-flexbox, .content {
position:relative;
top:0;
width:100%;
height:100%;
}
.content {
padding:8px 20px 15px;
display:flex;
align-content:center;
}
.box {
height:20%;
margin:auto
}
h1 {
text-align: center;
font-size: 75px;
margin-top: 0em;
margin-bottom: 0em;
padding: 0em;
}
h2 {
font-size: 50px;
text-align: center;
margin-top: 0em;
margin-bottom: 0em;
padding: 0em;
}
h3 {
font-size: 25px;
text-align: center;
margin-top: 0em;
margin-bottom: 0em;
padding: 0em;
}
a {
color: #000;
text-decoration: none;
}
.content h1 {
white-space:nowrap;
overflow:hidden;
-webkit-animation: typing 5s steps(60, end);
-moz-animation: typing 5s steps(60, end);
}
.content h2 {
white-space:nowrap;
overflow:hidden;
-webkit-animation: typing 5s steps(60, end);
-webkit-animation-delay: 4s;
-webkit-animation-fill-mode:both;
-moz-animation: typing 5s steps(60, end);
-moz-animation-delay:4s;
-moz-animation-fill-mode:both;
}
.content h3 {
white-space: nowrap;
overflow: hidden;
-webkit-animation: typing 10s steps(120, end);
-webkit-animation-delay: 8s;
-webkit-animation-fill-mode: both;
-moz-animation: typing 10s steps(120, end);
-moz-animation-delay: 8s;
-moz-animation-fill-mode: both;
}
span {
-webkit-animation: blink 1s infinite;
-moz-animation: blink 1s infinite;
}
@-webkit-keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@-webkit-keyframes blink {
to { opacity: .0;}
}
@-moz-keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@-moz-keyframes blink {
to { opacity: .0; }
}
而且這裏的一些HTML與它去:
<i class="do-you-even-flexbox"></i>
<div class="content">
<div class="box">
<h1>This wasn't the same as the fiddle code.</p>
<h2>So I've removed some details so it's similar to the fiddle.</p>
<h3>~<a href="contact.html"> get in touch </a>~<a href="about.html"> about me </a>~<a href="blog/"> blog </a>~<a href="projects.html"> projects </a>~<a href="portfolio/"> my portfolio </a>~<span> |</span></h3>
</div>
</div>
@NenadVracar將編輯清晰度和:在動畫完成後,文本漂浮本身爲中心,而不是從開始它的最終位置(或碰了一下自己?)。我如何阻止這種情況發生? –
如果你給'h1'一個像border一樣的邊框:1px純綠色,效果會更加明顯; –