multiMix()

Type : public method

Support : 0.6

Return : String

Methods

  • multiMix( colors, progress, type ) : Stringver 0.6~

    • colors : Array
      색상배열
    • progress : Number
      색상들의 혼합 비율, 0~1
    • type : String
      반환 받을 Color Type, "hex", "rgb", "rgba", "hsl", "hsla" (기본값 "hex")
      (~IE8 에서는 rgba를 지원하지 않기때문에 rgb로 반환된다.)

Example

//#65ff00
var mixColor1 = $B.color.multiMix( ['#ff22ff', '#00ff00', '#ffff00'], 0.7 );

//rgb(101, 153, 101)
var mixColor2 = $B.color.multiMix( ['#ff22ff', '#00ff00', 'rgb(255, 0, 255)'], 0.7, 'rgb' );

//rgba(255, 153, 101, 0.7)
var colors = ['#ff22ff', 'rgba(255, 255, 0, 0.5)', 'rgb(255, 0, 255)'];
var mixColor3 = $B.color.multiMix( colors, 0.7, 'rgba' );