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}