Piio Images for React
Piio Images will allow you to easily optimize all your images based on your visitor's browser and screen-size. With thoughtful compression and new-generation formats, your images will have crisp quality and consume less data, including Lazy Loading, out of the box.
Piio Images will also improve your load time and reduce unnecessary network usage.
- Effortless integration
- Pixel-perfect responsive images
- Thoughtful image compression
- High DPI Support and Scalability
- WebP and other new-generation formats and compatible with legacy browsers
- Lazy loading integrated
Read more about Piio and register at https://app.piio.co/register
Getting started
NPM Installation
npm install piio-images-react
Manual Installation
- Download the directory Piio-images cotaining
piio.js
andpiioElement.js
- Load
piio.js
andpiioElement.js
in your code
Import component
Add the following lines to import the component:
import Piio from '../components/Piio-images/piio'
import PiioElement from '../components/Piio-images/piioElement'
Initialize the component by adding it to your template file:
<Piio domainKey="DOMAIN-KEY"></Piio>
Replace DOMAIN-KEY
with the Piio Domain Key you get from your dashboard at https://app.piio.co/
Usage
Image tag
Add the PiioElement with the tag
attribute set as img
and your image as path
<PiioElement tag="img" path="https://piio.co/img/whypiio-hero@3x.png" alt="Piio Element" class="example-class"></PiioElement>
Background image
Add the PiioElement with the tag
attribute set as the element you want to have the background applied. You can add any other attributes and content to the element as it will be added.
Here is an example using an anchor tag:
<PiioElement path="https://piio.co/img/whypiio-hero@3x.png" tag="a" href="https://www.piio.co">
<h1>Example content</h1>
</PiioElement>
Picture
Add a PiioElement for each source
you need inside the picture
tag. Set tag as source
and add any other attributes you need, e.g media
attribute.
This example follows the Art Direction: Showing different images per device idea.
<picture>
<PiioElement path="https://secureservercdn.net/198.71.233.106/w4y.80f.myftpupload.com/wp-content/uploads/2020/02/backpack-desktop.jpg" tag="source" media="(min-width:969px)">
</PiioElement>
<PiioElement path="https://secureservercdn.net/198.71.233.106/w4y.80f.myftpupload.com/wp-content/uploads/2020/02/backpack-mobile.jpg" tag="source" media="(max-width:969px)">
</PiioElement>
<PiioElement path="https://secureservercdn.net/198.71.233.106/w4y.80f.myftpupload.com/wp-content/uploads/2020/02/backpack-mobile.jpg" tag="img">
</PiioElement>
</picture>
For more settings check our Docs at https://docs.piio.co/