How to use react-color to implement the front-end color picker

How to use react-color to implement the front-end color picker

background

We can use react-color to implement the color picker of the front-end interface, as shown in the following figure:

insert image description here

Install

npm i react-color -S

use

import React, { Component, Fragment, createRef } from 'react';
import { Popover } from 'antd';
import { SketchPicker } from 'react-color';

type StateType = {
  subtitleColor: string;
};
type PropType = {
  [propName: string]: any;
};
interface HandleCreateVideoByHotNews {
  state: StateType;
  props: PropType;
}

class HandleCreateVideoByHotNews extends Component {
  constructor(props: any) {
    super(props);
    this.state = {
      subtitleColor: '#FFF',
    }
  }

  // Change the subtitle font color private setSubtitleFontColor = (e: any): void => {
    console.log(e);
    this.setState({
      subtitleColor: e.hex,
    });
  }

  render() {
    const { subtitleColor } = this.state;

    return (
      <Popover
        content={<SketchPicker color={subtitleColor}
        onChange={(e) => {this.setSubtitleFontColor(e)}}
        onChangeComplete={(e) => {this.setSubtitleFontColor(e)}} />}
        trigger="click"
      >
        <div className="create-hotnews-video-popup-operate-item-titleset-item-operate font-color-set">
          <div className="font-color-set-value">{subtitleColor}</div>
          <div className="font-color-set-show" style={{backgroundColor: subtitleColor}}></div>
        </div>
      </Popover>
    )
  }
}

export default HandleCreateVideoByHotNews;


This is the end of this article about using react-color to implement a front-end color picker. For more related ct-color front-end color picker content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  Teach you how to implement a circular/fan-shaped menu in 2 minutes (basic version)

>>:  Detailed analysis of compiling and installing vsFTP 3.0.3

Recommend

Example code for implementing equal width layout in multiple ways using CSS

The equal-width layout described in this article ...

Using HTML to implement a voting website cheating scheme that restricts IP

This is a cheating scheme for voting websites wit...

WePY cloud development practice in Linux command query applet

Hello everyone, today I will share with you the W...

How to implement horizontal bar chart with percentage in echarts

Table of contents Example Code Rendering Code Ana...

How to clear mysql registry

Specific method: 1. Press [ win+r ] to open the r...

Solve the problem that await does not work in forEach

1. Introduction A few days ago, I encountered a p...

The difference between Vue interpolation expression and v-text directive

Table of contents 1. Use plugin expressions 2. Us...

Detailed explanation of reduce fold unfold usage in JS

Table of contents fold (reduce) Using for...of Us...

We're driving IE6 to extinction on our own

In fact, we wonder every day when IE6 will really...

How to use Vue to implement CSS transitions and animations

Table of contents 1. The difference between trans...

MySQL cleverly uses sum, case and when to optimize statistical queries

I was recently working on a project at the compan...

Summary of 6 Linux log viewing methods

As a backend programmer, you deal with Linux in m...

MySql 5.6.35 winx64 installation detailed tutorial

Note: There was no error in the project startup d...

Full steps to create a high-performance index in MySQL

Table of contents 1. Index Basics 1. Types of Ind...