banner
泽泽社长

泽泽社长

青空之下,人间未满,为言为空,不止摸鱼

給 xLog 加上雷姆拉姆

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;
}
}

圖片素材:
remram

給 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;
}
}
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。