An open API service indexing awesome lists of open source software.

https://github.com/johnantoni/meteor-picturefill

A responsive image polyfill for <picture>, srcset, sizes, and more ~ packaged for Meteor
https://github.com/johnantoni/meteor-picturefill

Last synced: about 1 year ago
JSON representation

A responsive image polyfill for <picture>, srcset, sizes, and more ~ packaged for Meteor

Awesome Lists containing this project

README

          

# meteor-picturefill

A responsive image polyfill for picture, srcset, sizes, and more. packaged for Meteor

Based on the picturefill js library by Scott Jehl.

http://scottjehl.github.io/picturefill/

### Install

meteor add johnantoni:meteor-picturefill

### Usage

Examples http://scottjehl.github.io/picturefill/#examples

### Markup

#### As HTML






A giant stone face at The Bayon temple in Angkor Thom, Cambodia

#### As JADE

picture
|
source(srcset="examples/images/extralarge.jpg" media="(min-width: 1000px)")
source(srcset="examples/images/large.jpg" media="(min-width: 800px)")
|
img(srcset="examples/images/medium.jpg" alt="A giant stone face at The Bayon temple in Angkor Thom, Cambodia")