Giter Site home page Giter Site logo

grunt-inline-imgsize's Introduction

grunt-inline-imgsize

Inject width and height for img tags

Getting Started

If you haven't used grunt before, be sure to check out the Getting Started guide.

From the same directory as your project's Gruntfile and package.json, install this plugin with the following command:

npm install grunt-inline-imgsize --save-dev

Once that's done, add this line to your project's Gruntfile:

grunt.loadNpmTasks('grunt-inline-imgsize');

If the plugin has been installed correctly, running grunt --help at the command line should list the newly-installed plugin's task or tasks. In addition, the plugin should be listed in package.json as a devDependency, which ensures that it will be installed whenever the npm install command is run.

The "inlineImgSize" task

Use the inlineImgSize task for injecting the width and height properties of <img> tags. This enhances the user experience because fewer repaints are required as a page's assets are loaded in.

Overview

In your project's Gruntfile, add a section named inlineImgSize to the data object passed into grunt.initConfig().

grunt.initConfig({
  inlineImgSize: {
  }
})

Options

options.encoding

Type: String Default value: 'utf8'

The encoding of the file contents.

Usage Examples

Basic Image Size Inlining

grunt.initConfig({
  inlineImgSize: {
    files: {
      src: ['index.html', 'contact.html']
    }
  }
})

Custom Options

grunt.initConfig({
  inlineImgSize: {
    options: {
    },
    files: [{
      expand: true,
      cwd: 'src',
      src: ['*.html'],
      dest: 'dest/'
    }]
  }
})

grunt-inline-imgsize's People

Contributors

sartak avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.