JSPM

react-acrylic

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q25788F
  • License MIT

Frost glass acrylic background react component

Package Exports

  • react-acrylic

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 (react-acrylic) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React Acrylic

Frost glass effect, Acrylic react component

This one uses html2canvas, which takes dynamic ‘screenshots’ of the content to blur.

Usage

import React, { Component } from 'react'
Import Acrylic from 'react-acrylic'

class YourComponent extends Component {
  render() {
    <Acrylic
      background='#eee'
      opacity='0.4'

      position='fixed'
      top='100px'
      left='100px'
      width='300px'
      height='200px'
    >
      <span>Hello Acrylic</span>
    </Acrylic>
  }
}