提示层弹出模态窗口js插件

提示层弹出模态窗口js插件
价格 免费
插件介绍
JSFrame.js是一款弹出插件,比如消息提示、模态窗口、Windows窗口等,非常轻量级的JavaScript类库。
const myPopup = myWindow.create({

      // 名称
      name: 'my-window-name',

      // 标题
      title: 'Window0',

      // 位置
      left: 20,
      top: 20,

      // 宽高
      width: 320,
      height: 220,

      // 最小款高
      minWidth: 160,
      minHeight: 100,

      // 拖拽
      movable: true,

      // enable resizable
      resizable: true,
 
      // 自定义样式
      style: {
        backgroundColor: 'rgba(220,220,220,0.8)',
        overflow: 'auto',
      },

      // HTML 内容
      html: 'Contents',

      // iframe
      url: 'content01.html',

      // 回调
      urlLoaded: (frame) = {}
      
});
  • 最新评论
  • 总共 0 条评论