particles.jsをバックグラウンドとして処理させることはできません。それはページ全体をカバーしています。私はparticles.jsでカバーしたいすべてのZインデックス(50)を高く設定しようとしました。ここにはparticles codepenがあります。 codepenに背景がないため、パーティクルは表示されません。正しいレイヤーにparticles.jsを取得しますか?
以下のコードは、<section id="services">
の背景として設定しようとしているコードです。
<!-- particles.js container -->
<div id="particles-js"></div>
<!-- stats - count particles -->
<!-- particles.js lib - https://github.com/VincentGarreau/particles.js -->
<script src="http://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- stats.js lib --> <script src="http://threejs.org/examples/js/libs/stats.min.js"></script>
問題は、それがなぜわからない、だけでなく<section>
内部のすべてをカバーすることです。
あなたが目にしているコードは、ブートアップテンプレートではありません。最初にそれを実際に使用するつもりはないので、スタイル属性の混乱を招くことになります。
<section id="services" style="padding:10px;background-color:black;">
<!-- Here's where I thought fitting it would cause it to work as a background -->
<div class="container" style="padding-top:10px;margin-top:10px;">
<div class="row text-center" style="margin-left:auto;margin-right:auto;">
<div style="margin-left:auto;margin-right:auto;max-width:720px;width:100%;">
<button id="reload" onclick="return returnGame();clearDescr();">
<div class="notspinning" id="theSpinner"></div>
</button>
<span id="findMe">
<a href="" id="steamLink" style="color:#333" target="_blank">
<h4 class="service-heading" id="gameName" style="font-family:Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:uppercase;font-weight: 700;font-size: 22px;color:#777;"></h4>
</a>
</span>
<p class="text-muted" id="gameDescr" style="min-height:100px;font-family:MyWebFont;"></p>
</div>
</div>
</div>
</section>
正しい方向であれば、どんな種類のガイダンスをいただければ幸いですか?
。これは1つの問題を修正し、別の問題を解決します。私がこれを利用したいのであれば、私はちゃんとしなければならない。しかし、ありがとう! –
正解が良いです!しかし、あなたもあなたの '.container'の位置を作ることを試みましたか:相対;'? –