-
基于任何对象的散列值或有效的颜色字符串,harmonyos2-color-stats可生成对应的颜色信息
资源介绍
和声2
颜色统计
描述
根据任何对象的散列生成颜色信息。
如果您传入有效的颜色名称或
css
值,则将返回该颜色的信息。
入门
安装模块:
npm
install
color-stats
var
colorStats
=
require
(
'color-stats'
)
;
colorStats
(
'red'
)
;
//
get
a
bunch
of
stats
about
the
color
red
colorStats
(
'#ff0000'
)
;
//
get
a
bunch
of
stats
about
the
color
red
colorStats
(
{
info
:
"Based
On
Hash
-
always
the
same
color"
}
)
;
//
get
a
color
based
on
some
object.
colorStats
.
random
(
)
;
//
get
the
stats
for
a
random
color
文档
颜色统计(颜色对象)
传入一个颜色字符串(或任何对象),并获取该对象的统计信息。
colorStats.p