jQuery模态窗口插件vintage-popup
源码介绍
vintage-popup是一款jQuery模态窗口插件。该模态窗口插件支持放置任何HTML标签,通过简单的配置,既可以实现一个非常炫酷的打开模态窗口特效。 NPM yarn AMD方式使用 CommonJS方式使用 ES6 (Webpack) 在页面中直接引入。 一个模态窗口的基本HTML结构如下: 使用远程异步数据: example.json 在webpack中使用: 该jQuery模态窗口插件的配置参数请参考:https://github.com/Inspired-by-Boredom/vintage-popup#options 该jQuery模态窗口插件的github网址为:https://github.com/Inspired-by-Boredom/vintage-popup简要教程
使用方法
npm i -S vintage-popup
yarn add vintage-popup
require(['vintage-popup'], function (Popup) {});
var Popup = require('vintage-popup');
import Popup from 'vintage-popup';
HTML结构
{
"replaces": [
{
"what": "[data-popup-id='exampleRemote'] .popup__content",
"data": "
初始化插件
// initialize popup
$('button').popup();
// initialize with options
$('button').popup({
closeOnEsc: false
});
// import popup module
import Popup from 'vintage-popup';
// fix jQuery conflict (once)
Popup.expose($);
// use it!
$('button').popup();
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » jQuery模态窗口插件vintage-popup
发表评论 取消回复