Skip to content

lastofpudge/GModal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c0e38de · Jan 29, 2024

History

62 Commits
Jan 15, 2023
Jan 15, 2024
Feb 2, 2023
Jan 15, 2023
Dec 22, 2022
Jan 16, 2023
Jan 14, 2023
Dec 22, 2022
Dec 22, 2022
Dec 22, 2022
Jan 15, 2024
Jan 15, 2024
Dec 22, 2022
Feb 2, 2023
Dec 22, 2022
Dec 22, 2022
Jan 15, 2023

Repository files navigation

GModal

A tiny easy to use 6kb size modal with zero dependencies:

Start

Download the latest version from GitHub or via package managers:

npm i @lastofpudge/g-modal
yarn add @lastofpudge/g-modal

Initialize modal:

new GModal.init(".js-modal", {
  closeDelay: 200,
});

.js-modal is a selector for the modal open button.

You can specify a target for the modal buttons:

data-target="#target"

You also can specify modal open/close effects:

data-open="tmHorizontalIn" data-close="tmHorizontalOut"

To use custom effects, create css animation and call it in data-open/close attributes

Close buttons should contain a class called "js-modal-close".

To change the modal position, you can modify style props: ".g-modal__overlay" "align-items/justify-content" properties.

Please also check for animations support:

image info