Open
Conversation
Author
Owner
|
看起来不错噢!我看你是用透明度表示危险度的,但感觉颜色过于接近,区分度不太明显,可以试试多种颜色的方案。 |
Author
|
关于颜色,现在的方案是设置几个关键点的颜色(见下面的代码),关键点之间的颜色用 linear-gradient 计算(这里用的是 RGB color space。我也尝试过 HSL,但是效果并不是很好) let gradient = [
{ risk: 0.0 , color: [255, 255, 255] }, // 绝安,白色
{ risk: 1e-5 , color: [131, 179, 17] }, // 只要有一点风险,鸭绿色
{ risk: 8 , color: [250, 195, 0] }, // 还可以冲一冲, 黄色
{ risk: 16 , color: [253, 99, 0] }, // 相当危险,橙色
{ risk: 25.0, color: [253, 0, 135] }, // 非常危险, 粉色/紫色
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



这个 pr 是关于 issue #68 的解决方案
目前的demo: 显示危险牌
计划添加的内容