Scrapboxの背景画像を変える
public.icon
以下Codeブロックをそのまま反映させたいsettingsページに記載する
code:style.css
body{background:url('画像URL');background-size:cover}
example
unsplashからランダムの画像をとってくる
code:style.css
body{background:url('https://source.unsplash.com/random');background-size:cover}
unsplashから特定のユーザーのlike画像を取ってくる
これを使うことで、ランダム画像を自分のお気に入りの画像で固めることができる
code:style.css
body{background:url('https://source.unsplash.com/random');background-size:cover}
unsplashの特定のユーザーの投稿画像
code:style.css
body{background:url(https://source.unsplash.com/user/inoue2002/likes);background-size:cover}