Visual grid overlay for aligning CSS layouts at development-time.
Examples and the API are in the documentation
- Supply a column count, gutter width, and how they behave at any breakpoint
- Supports additional gutters outside the first and last columns
- Draggable on-screen responsive debugger
- Toggle the overlay Option + g
npm install grid-overlay --save-dev
<script src="https://unpkg.com/[email protected]/dist/grid-overlay.min.js"></script>
new GridOverlay({
controlParentEl: '.attach-grid-overlay-control-here',
maxWidth: 1440,
columns: 12,
gridGutter: 8,
adaptive: [
{
mediaQuery: '(max-width: 600px)',
cols: 2,
gridGutter: 8
},
{
mediaQuery: '(min-width: 1025px)',
cols: 12,
gridGutter: 48
}
],
overlayVisible: true,
writeInlineStyles: true,
controlZIndex: 1200,
controlBackgroundColor: '#474747',
controlFontColor: '#ffffff',
controlOpacity: 0.9,
overlayZIndex: 1100,
overlayOpacity: 0.4,
foregroundColor: '#409bd2',
backgroundColor: '#80bde1'
});
<grid-overlay
v-bind:adaptive="[
{ mediaQuery: '(max-width: 600px)', cols: 2, gridGutter: 8, extraLeftRightGutter: 0 },
{ mediaQuery: '(min-width: 1025px)', cols: 12, gridGutter: 8, extraLeftRightGutter: 40 }
]"
v-bind:max-width="1440"
v-bind:draggable="true"
v-bind:write-inline-styles="true"
v-bind:background-color="'#aa55aa'"
v-bind:foreground-color="'#ff00ff'"
v-bind:pre-create="gridOverlayPreCreate"
></grid-overlay>
npm run build
npm run lint
npm run scripts
npm run scripts-vue
cd demo
npm run build
cd demo-vue
npm run build
npm run jsdoc
npm run build
npm run scripts
npm run scripts-vue
git tag -a vX.Y.Z
git push origin master
git push origin --tags
npm publish .