(Showing Draft Content)
Wijmo.Color
Color クラス
コンストラクタ
constructor
- new Color(color: string): Color
メソッド
equals
- equals(clr: Color): boolean
静的 fromHsb
- fromHsb(h: number, s: number, b: number, a?: number): Color
-
引数
-
h: number
-
s: number
-
b: number
-
オプション a: number
静的 fromHsl
- fromHsl(h: number, s: number, l: number, a?: number): Color
-
引数
-
h: number
-
s: number
-
l: number
-
オプション a: number
静的 fromRgba
- fromRgba(r: number, g: number, b: number, a?: number): Color
-
引数
-
r: number
-
g: number
-
b: number
-
オプション a: number
静的 fromString
- fromString(value: string): Color
静的 toOpaque
- toOpaque(c: any, bkg?: any): Color
色を表します。
Color クラスは、CSS文字列として指定された色を解析し、 その赤、緑、青、およびアルファチャンネルを読み取り/書き込み可能なプロパティとして公開します。 また、Color クラスは、RGBではなくHSBカラーモデルとHSLカラーモデルを使用して 色を作成するためのfromHsb メソッドとfromHsl メソッド、 およびそれらのカラーモデルを使用して色要素を取得するための getHsb メソッドとgetHsl メソッドを提供します。 最後に、Color クラスは、HSLモデルを使用して2色間を補間することで 色を作成するinterpolate メソッドを提供します。 このメソッドは、animate メソッドでカラーアニメーションを作成する場合に特に便利です。 以下の例はこの仕組みを示します。
Example