html と css#
以前、Typecho と WordPress にレムとラムの GIF アニメーションを追加するプラグインを作成しました。以下は、コアのソースコードです。
html コード:
<div class="remram">
<div class="rem"></div>
<div class="ram"></div>
</div>
css コード:
.remram {
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
display: flex;
position: fixed;
justify-content: space-between;
}
/*高解像度で画像素材を読み込む*/
@media (min-width: 1420px){
.remram div {
background-repeat:no-repeat;
background-size: 250px;
background-image: url('./remram.gif') !important;
width: 125px;
}
.remram .rem{
background-position: -125px bottom;
}
.remram .ram{
background-position: 0 bottom;
}
}
画像素材:
xLog にレムとラムを追加する#
現在、xLog ではカスタム CSS のみを使用できるため、カスタムdiv
ブロックを挿入することはできません。そのため、代替策を見つける必要がありました。そして、xLog の構造には、おそらく音楽プレーヤー用に準備された<div id="site-aplayer"></div>
があることに気付きましたが、現時点ではまだ使用されていないようです。そのため、それに対していくつかのトリッキーな操作を行うことができます、指摘を受けて.xlog-page
に直接追加することがわかりました。書き方を最適化し、追加する必要のある CSS もいくつか削減しました。
カスタム CSS は以下の通りです:
/*高解像度で画像素材を読み込む*/
@media (min-width: 1280px){
.xlog-page::before, .xlog-page::after {
position: fixed;
top: 0;
bottom: 0;
content: ' ';
background-repeat: no-repeat;
background-size: 250px;
background-image: url(https://xlog.app/cdn-cgi/image/width=1080,quality=75,format=auto,onerror=redirect/https://ipfs.xlog.app/ipfs/bafybeieoif32ybcbt22enk4ikytzvu4oxudlc27egg3j3t5mqgg2f6cs5i) !important;
width: 125px;
background-position: -125px bottom;
}
.xlog-page::after {
background-position: 0 bottom;
right: 0;
}
}