1.3.0 • Published 3 years ago

grid-overlay v1.3.0

Weekly downloads
45
License
MIT
Repository
github
Last release
3 years ago

grid-overlay

Visual grid overlay for aligning CSS layouts at development-time.

Examples and the API are in the documentation

Features

  • 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

Usage

Install

npm install grid-overlay --save-dev

CDN

<script src="https://unpkg.com/grid-overlay@1.2.0/dist/grid-overlay.min.js"></script>

Vanilla Javascript

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'
});

Vue Component

<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>

Development

Build

npm run build
npm run lint
npm run scripts
npm run scripts-vue

Build Demo

cd demo
npm run build
cd demo-vue
npm run build

Release

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 .
1.3.0

3 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago