有帮助?打赏吧!
RBG转灰度 //rgba(grey,grey,grey,1) function rgb2Grey(r,g,b) { var grey=Math.round((r*299 + g*587 + b*114 + 500) / 1000) return grey } 判断两种颜色相似程度 //rbg fu Read More
posted @ 2017-06-28 13:20 luoeeyang Views(1344) Comments(0) Diggs(0) Edit