我正在尝试添加一个无限垂直滚动的图像,就像 Adam Whitcroft 的精彩登陆页面一样。我看过他的源代码,但我不知道他是如何做到的。这个想法是“我是科学家”文本将出现在图像上。
我目前的代码是:
<div class="ani">
<div class="container">
<img src="img/Gene.png" alt="Scrolling Genes" />
</div>
<h3> I'm a scientist. </h3>
<p> I worked at.... </p>
“ani”类的 CSS 是:
.ani {
background: url(img/Gene.png);
color:#ecf2f9;
text-align:center;
-webkit-animation:bgscroll 20s infinite linear;
}
对于“容器”:
.header .container {
max-width:400px;
}
该代码(可耻地)取自我上面提到的网站。对于我的生活,我无法弄清楚如何在文本上方创建滚动图像。
非常感谢提前。