Create screenshots with a viewer of html files per breakpoint
This task takes with PhantomJS screenshots of your page, and store them in a folder. Also a nice viewer is generated, so you can browse the screenshots easily. The files are opened at the given url, so make sure the files are reachable by url.
This plugin requires Grunt ~0.4.1
grunt.loadNpmTasks('grunt-breakshots');
Type: Array
Default value: [320,480,640,768,1024,1200]
Type: String
Default value: 'png'
jpg
is also possible.
Type: String
Default value: '.'
Type: String
Default value: 'http://localhost:8000/'
grunt.initConfig({
breakshots: {
options: {},
files: {
'breakshots/': ['index.html','contact.html','**/*.html']
},
},
})
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
- 2013/09/11 - 0.2.0 - Now open files by an url, fixes linking problems
- 2013/07/04 - 0.1.2 - Added a nice viewer html
- 2013/07/04 - 0.1.1 - Fixed Phantomjs issue
- 2013/07/03 - 0.1.0 - Initial