Adaptation for jQuery.FancyBox.
To install a specific version:
npm i https://github.com/callisto2410/modstrap-fancy.git#v1.0.0
To install the current version:
npm i https://github.com/callisto2410/modstrap-fancy.git
SCSS:
@use "~@modstrap/fancy";
TypeScript:
import Fancy from "@modstrap/fancy";
$(".button").on("click", () => {
Fancy.open({
src: $(".content"),
type: "html",
opts: {
caption: "Content description..."
}
});
});