1
1

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 1 year has passed since last update.

JavaScriptの勉強のため、ボタンを押したら背景色がランダムに変わるだけのアプリを作りました。

Last updated at Posted at 2021-11-10

作ったアプリ

https://festive-austin-0206b7.netlify.app/
Netlifyでデプロイしました。
めちゃくちゃ単純で、画面中央のボタンを押したら背景色がランダムに変わるだけのアプリ。
連続で押したら目がチカチカします。
ライブラリやフレームワークは使わずに、HTML、CSS、Vanilla JavaScriptで作成(リセットCSSだけ使ってます)。

ランダムな背景色の作成

0~255のランダムな整数を3つ取得して、RGB関数に値を渡してcontainerの背景色に適用しています。

const clickMe = document.getElementById('click-me')

clickMe.addEventListener('click', (e) => {
  const container = document.querySelector('.container')
  const red = Math.floor(Math.random() * 256)
  const green = Math.floor(Math.random() * 256)
  const blue = Math.floor(Math.random() * 256)
  container.style.background = `rgb(${red}, ${green}, ${blue})`
})

参考にさせていただいたところ

JavaScriptの練習ネタ
25 Beginner JavaScript Project Ideas

今回投稿するにあたってアプリを公開しておきたいなーと思い、Netlifyというサービスを初めて利用しました(ねっとりふぁい?)
Netlifyで静的サイトのホスティングをする

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?