JS根據數值大小返回不同色值(數值越大,顏色越深)

//從數組中獲取最大值和最小值 let max = Math.max.apply(null, counts); let min = Math.min.apply(null, counts); //根據數值大小返回顏色值的深淺 //n代表數值,方法用在數組遍歷時 function getColor(min,max,n) { if(max == min){ if(n>0){ return ‘rgb(2
相關文章
相關標籤/搜索