コンテンツの読み込み中に表示するプレースホルダ表示を作成しようとしています。私は、グラデーションの中間点をイラストレーションの目的で黒に変更しました(これは、プロダクションではより明るいグレーです)。CSS - 背景位置アニメーションの調整
灰色のボックス全体で同じサイズになり、トランジションのすべてのポイントですべてのボックスに揃えられるように、グラデーションを調整することが目的です。
現在のところ、アニメーションは<div>
のサイズに関連しており、<div>
のサイズが異なるため、アニメーションは整列しません。
アニメーションを正しく整列させる方法に関するアイデアはありますか?
@keyframes Gradient {
\t 0% {
\t \t background-position-x: 100%
\t }
\t 100% {
\t \t background-position-x: 0%
\t }
}
.placeholder {
background: linear-gradient(90deg, #F0F0F0 25%, #000 50%, #F0F0F0 75%);
animation: Gradient 2s ease infinite;
margin-bottom: 1em;
display: block;
background-size: 400% 100%;
}
.placeholder.fake-h1 {
height: 4em;
width: 40%;
border-radius: 8px;
}
.placeholder.fake-p {
height: 1.5em;
width: 100%;
border-radius: 5px;
}
.placeholder.fake-p.short {
width: 60%;
}
<div class="placeholder fake-h1"></div>
<div class="placeholder fake-p"></div>
<div class="placeholder fake-p"></div>
<div class="placeholder fake-p short"></div>
<br />
<div class="placeholder fake-p"></div>
<div class="placeholder fake-p"></div>
<div class="placeholder fake-p short"></div>