【发布时间】:2022-01-26 16:03:17
【问题描述】:
有人可以帮我把这个动画文本放在我的 div 的左下角吗?如果我需要改变实现动画文本的方式,我会全力以赴。我从另一个 Stack Overflow 线程中得到了我正在使用的示例。我正在使用 Wordpress 和 Elementor。
我的网站的链接是: http://stalone.flywheelsites.com/
我目前使用的代码如下:
.lyrics-container {
margin: 75% 0% 0% 0%;
}
.lyrics{
position: absolute;
font-size: 72px;
font-weight: bold;
line-height: 87%;
}
.lyrics:nth-child(1){
animation-name: fade;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-duration: 5s;
animation-direction: alternate-reverse;
}
.lyrics:nth-child(2){
animation-name: fade;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-duration: 5s;
animation-direction: alternate;
}
@keyframes fade{
0%,50% {
opacity: 0;
}
100%{
opacity: 1;
}
}
<div class="logo">Logo</div>
<div class="lyrics-container">
<p class="lyrics">I'm trying,<br>not to swim<br>into the deep,</p>
<p class="lyrics">I will never<br>love again.</p>
</div>
注意:出于演示目的,我做了一个快速的保证金修改,我知道这是不可行的,这就是我在这里寻求帮助的原因。
提前致谢!
【问题讨论】:
-
在您的网站中,这个 div 被包裹在另一个 div 中
标签: html css wordpress elementor