Skip to content

daiiz/dpi-aware-image

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dpi-aware-image

An img element which determine own physical width and height by considering source png image's DPI.

Installation

$ npm install @daiiz/dpi-aware-image

Development

$ npm install
$ npm run build
$ npm run demo

Open http://localhost:9001/demo/index.html

Usage

<style>
  /* Optional */
  dpi-aware-image {
    display: inline-block;
    --max-width: 100%;
    --max-height: 300px;
  }
</style>

<dpi-aware-image src='/demo/dist/icon.png'></dpi-aware-image>

Demos