0.0.6 • Published 1 year ago

react-json-skeleton-loader v0.0.6

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

[Deploy Npm Publish

DEMO

Installation

Plugin

Component

Content

You can implement multiple types of skeleton loaders simultaneously using content property.

import JsonSkeletonLoader from 'react-json-skeleton-loader'

const temp = () => {
  return (
    <JsonSkeletonLoader
      defaultSize={{
        box: 100px,
        circle: 100px
      }}
      content={[['box', 'title + text:3'], [text:3]]}
      />
  )
}
import JsonSkeletonLoader from 'react-json-skeleton-loader'

const temp = () => {
  return (
    <JsonSkeletonLoader
      defaultSize={{
        box: 100px,
        circle: 100px
      }}
      content={[['box', 'blink', 'title + text:3'], ['text:3'], ['box', 'text:2']}
      />
  )
}

Options

Options allow you to implement different styles of Skeleton Loaders.

import JsonSkeletonLoader from 'react-json-skeleton-loader'

const temp = () => {
  return (
    <JsonSkeletonLoader
      defaultSize={{
        box: 100px,
        circle: 100px
      }}
      options={{
        speed: 0.5,
        radius: 15,
        primaryColor: '#ffb0b0',
        secondaryColor: '#4c8bf5'
      }}
      content={[['box', 'title + text:3'], [text:3]]}
      />
  )
}

📝 License

Copyright © 2022. Built by INTEGRATION Corp. This project is distributed under MIT license.

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago