Package Exports
- vue-input-text-area-1
- vue-input-text-area-1/dist/vue-color-kit.cjs.js
- vue-input-text-area-1/dist/vue-color-kit.esm-bundler.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-input-text-area-1) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-color-kit
LiveDemo
Install
$ yarn add vue-color-kit
Example
<template>
<div :style="{background: color}">
<ColorPicker
theme="light"
:color="color"
:sucker-hide="false"
:sucker-canvas="suckerCanvas"
:sucker-area="suckerArea"
@changeColor="changeColor"
@openSucker="openSucker"
/>
</div>
</template>
<script>
import { ColorPicker } from 'vue-color-kit'
import 'vue-color-kit/dist/vue-color-kit.css'
export default {
components: {
ColorPicker,
},
data() {
return {
color: '#59c7f9',
suckerCanvas: null,
suckerArea: [],
isSucking: false,
}
},
methods: {
changeColor(color) {
const { r, g, b, a } = color.rgba
this.color = `rgba(${r}, ${g}, ${b}, ${a})`
},
openSucker(isOpen) {
if (isOpen) {
// ... canvas be created
// this.suckerCanvas = canvas
// this.suckerArea = [x1, y1, x2, y2]
} else {
// this.suckerCanvas && this.suckerCanvas.remove
}
},
},
}
</script>
Options
Name | Type | Default | Description |
---|---|---|---|
theme | String | dark |
dark or light |
color | String | #000000 |
rgba or hex |
colors-default | Array | ['#000000', '#FFFFFF', '#FF1900', '#F47365', '#FFB243', '#FFE623', '#6EFF2A', '#1BC7B1', '#00BEFF', '#2E81FF', '#5D61FF', '#FF89CF', '#FC3CAD', '#BF3DCE', '#8E00A7', 'rgba(0,0,0,0)'] |
like ['#ff00ff', '#0f0f0f', ...] |
colors-history-key | String | vue-color-kit-history |
|
sucker-hide | Boolean | true |
true or false |
sucker-canvas | HTMLCanvasElement | null |
like document.createElement('canvas') |
sucker-area | Array | [] |
like [x1, y1, x2, y2] |
color
is one-way data flow, so you can't usev-model
. why? because you'll listenchangeColor
event do more things, so i think it's not necessary here.
Events
Name | Type | Args | Description |
---|---|---|---|
changeColor | Function | color | { rgba: {}, hsv: {}, hex: ''} |
openSucker | Function | isOpen | true or false |
if you want use sucker, then
openSucker
,sucker-hide
,sucker-canvas
,sucker-area
is necessary. when you click sucker button, you can click it again or press key ofesc
to exit.