所以我想在标题中使用particle.js并在标题上写一些东西,但是标题只是在粒子-js背景下面。我会附上一张照片,然后你就可以看到我的意思了。 。 如果保证金顶部是0vh或50vh无关紧要,它仍然会下降..
这是html部分..
#particles-js {
background-image: -webkit-linear-gradient(135deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
background-image: linear-gradient(-45deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
}
}
#head1 {
margin: 0;
background-size: cover;
padding: 40px 0px;
}
.header-content {
margin-top: 0vh;
}
.header-title,
.header-sub-title {
font-family: 'Roboto', sans-serif;
text-transform: uppercase;
color: #333;
}
.header-title {
font-size: 112px;
font-weight: 100;
margin-bottom: 0px;
line-height: 1;
}
.header-sub-title {
font-size: 16px;
margin-left: 10px;
}
<section id="head1">
<div id="particles-js"></div>
<div class="header-content">
<h1 class="header-title">BEST Plan</h1>
<p class="header-sub-title">ggjfkfk</p>
</div>
<!-- /.header-content -->
</section>
我确实添加了particle.js和app.js文件
答案 0 :(得分:0)
这不仅仅是保证金的问题,因为保证金是根据节点的位置分配的,除非设置为absolute
或类似,否则不会相对于整个身体的位置。将以下样式添加到标题中:
.header-title {
font-size: 112px;
font-weight: 100;
margin-bottom: 0px;
line-height: 1;
position: absolute;
top: 25px; /* play with the value until it looks right */
}