convert()

Type : public method

Support : 0.6

Return : String

Methods

  • convert( color, type ) : Stringver 0.6~

    • color : String
      Color문자열 "hex", "rgb", "rgba", "keyword", "hsl", "hsla"
    • type : String
      반환 받을 Color Type, "hex", "rgb", "rgba", "hsl", "hsla" (기본값 "hex")
      (~IE8 에서는 rgba를 지원하지 않기때문에 rgb로 반환된다.)

Example

var bgColor = $B( '#box' ).css( 'background-color' );
var color = $B.color.convert( bgColor, 'hex' );