Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-simple-image

Package Overview
Dependencies
Maintainers
4
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-simple-image

responsive tag with cleaner srcset/sizes interface.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.7K
decreased by-7.02%
Maintainers
4
Weekly downloads
 
Created
Source

react-simple-image CircleCI

react-simple-image is a React Components of <img> tag with cleaner srcset/sizes interface.

Install

npm install --save react-simple-image

or,

yarn add react-simple-image

Usage

The <Image/> component has two descriptor type:

  • alt - String : (Required) alt text
  • className - String : (Optional) additional className
  • src - String : (Required) src attribute
  • srcSet - Object : (Required) src set
    • key: descriptor - Regexp: width descriptor (e.g. 360w, 720w) or pixel descriptor (e.g. 1x, 1.5x, or 2x)
    • value: src - String: image paths/urls
  • sizes - Array : (Optional) sizez set for width descriptor
    • Object
      • size - String: image size
      • mediaCondition - String: to apply on the image size

Here are some tips:

  • As the HTML5 standard specifications says, sizes is not compatible with pixel descriptor. If you specify sizes with pixel descriptor, it is gracefully ignored.
  • width descriptor and pixel descriptor are not intended to use at the same time. If you declare both props, pixel descriptor overwrites and width descriptor props is ignored

For more information, please reach out for:

React Component

<Image
  alt='example'
  className='additional-className'
  src='example-small.png',
  srcSet={{
    '360w': 'example-small.png',
    '720w': 'example-middle.png',
    '1200w': 'example-large.png',
  }},
  sizes={[
    {size: '100vw', mediaCondition: '(max-width: 30em)'},
    {size: '50vw', mediaCondition: '(max-width: 50em)'},
    {size: 'calc(33vw - 100px)'},
  ]},
  />

Example

width descriptor

React Component
<Image
  alt='example'
  src='example-small.png',
  srcSet={{
    '360w': 'example-small.png',
    '720w': 'example-middle.png',
    '1200w': 'example-large.png',
  }},
  sizes={[
    {size: '100vw', mediaCondition: '(max-width: 30em)'},
    {size: '50vw', mediaCondition: '(max-width: 50em)'},
    {size: 'calc(33vw - 100px)'},
  ]},
  />
Rendered HTML
<img
  alt="example"
  src="example-small.png"
  srcset="example-small.png 360w,example-middle.png 720w,example-large.png 1200w"
  sizes="(max-width: 30em) 100vw,(max-width: 50em) 50vw,calc(33vw - 100px)"
  data-reactroot=""
  data-reactid="1"
  data-react-checksum="1197296813"/>

pixel descriptor

React Component
<Image
  alt='example'
  className='additional-className'
  src='example.png',
  srcSet={{
    '1x': 'example.png',
    '2x': 'example@2x.png',
  }},
  />
Rendered HTML
<img
  alt="example"
  class="additional-className"
  src="example.png"
  srcset="example.png 1x,example@2x.png 2x"
  data-reactroot=""
  data-reactid="1"
  data-react-checksum="1897738717"/>

License

Copyright (c) 2016 Bit Journey, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

FAQs

Package last updated on 30 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc