LoginSignup
0
0

More than 3 years have passed since last update.

【JavaScript】RGBメソッドの使い方

Last updated at Posted at 2021-03-02

RGB 関数

これが元になって調査

// RかGかBの値が変わったら、できた色を算出する
mixColor: function() {
    var ans = "RGB("+this.R+", "+this.G+", "+this.B+")";
    return ans;
},

構文

RGB(赤、緑、青)

確認画面

3つのスライダー動かしたら指定した部分のbackgroundColorが変化します!
スクリーンショット 2021-03-02 23.28.03.png

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