2
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【OBS】生放送に表示する時計を透過したいのでCSSを書いた【コピペすればOK】

Posted at

生放送の配信画面の時刻を透過します

「Y●u Tubeで生放送してみたいなぁ」
「ちょっと時計出すか」
「右下の時計を透過したいのになぁ。。。」→__できます__
image.png

手順

  1. [ソース]の[+]ボタンをクリック
    image.png

  2. [ブラウザ]をクリック
    image.png

  3. [新規作成]欄に適当な名前を入力して、[OK]をクリック
    image.png

  4. 次のような画面が表示されます
    image.png

  5. [URL]欄にTime.is(東京)のURLを入力
    https://time.is/ja/Tokyo

  6. [カスタムCSS]欄に次のCSSを入力し、 [OK]をクリック

/* 背景を透過する */
body, #mainwrapper {
    background-color: rgba(0,0,0,0);
}

/* 時計の文字色を黒色にする */
#clock {
    color: #000000;
}

image.png

完成

※この画像だけ、OBS画面の背景色を灰色に変更しています。

image.png

おまけ(時計の文字色を変更)

文字色を変える場合は、#clockcolorを変更します。

/* 背景を透過する */
body, #mainwrapper {
    background-color: rgba(0,0,0,0);
}

/* 時計の文字色を赤にする */
#clock {
    color: #ff0000;    /* ここのカラーコードを好きな色に変更 */
}

image.png

参考

2
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?