1.1.0 • Published 2 years ago

vlibras-react v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Instalação

# pnpm
pnpm add vlibras-react
# yarn
yarn add vlibras-react
# npm
npm install vlibras-react

Uso

import "./app.css";
import VLibras from "vlibras-react";

function App() {
    return (
        <>
            <VLibras />
            <div className="app">...</div>
        </>
    );
}
export default App;

Customização

import "./app.css";
import VLibras from "vlibras-react";

function App() {
    return (
        <>
            <VLibras personalization="https://example.com/vlibras.gov.br.json" opacity={0.5} />
            <div className="app">...</div>
        </>
    );
}
export default App;

Exemplo de configuração

  • A logo precisa ser 200x200
  • As cores são um RGB 0-1

    X=R/255

    Y=G/255

    Z=B/255

    33, 70, 191 = "x": 0.12941, "y": 0.27451, "z": 0.74902

{
    "cabelo": { "x": 0.0, "y": 0.0, "z": 0.0, "w": 1.0 },
    "calca": { "x": 0.1098, "y": 0.1098, "z": 0.1098, "w": 1.0 },
    "camisa": { "x": 0.12941, "y": 0.27451, "z": 0.74902, "w": 1.0 },
    "corpo": { "x": 0.756, "y": 0.517, "z": 0.443, "w": 1.0 },
    "iris": { "x": 0.0, "y": 0.0, "z": 0.0, "w": 1.0 },
    "olhos": { "x": 1.0, "y": 1.0, "z": 1.0, "w": 1.0 },
    "sombrancelhas": { "x": 0.0, "y": 0.0, "z": 0.0, "w": 0.0 },
    "logo": "https://i.imgur.com/kn4c8sA.png",
    "pos": "center"
}

Exemplo customização

License

Licensed under the MIT License

See LICENSE for more information.

1.0.2

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago