基本信息
源码名称:网页生成器
源码大小:1.13M
文件格式:.zip
开发语言:CSS
更新时间:2022-04-30
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

网页生成器


通过拖曳来生成html页面,非常方便



.
├── lubanh5_v1.10.1
│   ├── CHANGELOG.md
│   ├── LICENSE
│   ├── README.en.md
│   ├── README.md
│   ├── back-end
│   │   ├── h5-api
│   │   │   ├── README.md
│   │   │   ├── api
│   │   │   │   ├── work
│   │   │   │   │   ├── config
│   │   │   │   │   │   └── routes.json
│   │   │   │   │   ├── controllers
│   │   │   │   │   │   └── Work.js
│   │   │   │   │   ├── documentation
│   │   │   │   │   │   └── 1.0.0
│   │   │   │   │   │       └── work.json
│   │   │   │   │   ├── models
│   │   │   │   │   │   ├── Work.js
│   │   │   │   │   │   └── Work.settings.json
│   │   │   │   │   └── services
│   │   │   │   │       └── Work.js
│   │   │   │   └── workform
│   │   │   │       ├── config
│   │   │   │       │   ├── config
│   │   │   │       │   │   └── routes.json
│   │   │   │       │   └── routes.json
│   │   │   │       ├── controllers
│   │   │   │       │   └── Workform.js
│   │   │   │       ├── documentation
│   │   │   │       │   └── 1.0.0
│   │   │   │       │       └── workform.json
│   │   │   │       ├── models
│   │   │   │       │   ├── Workform.js
│   │   │   │       │   └── Workform.settings.json
│   │   │   │       └── services
│   │   │   │           └── Workform.js
│   │   │   ├── config
│   │   │   │   ├── application.json
│   │   │   │   ├── custom.json
│   │   │   │   ├── environments
│   │   │   │   │   ├── development
│   │   │   │   │   │   ├── custom.json
│   │   │   │   │   │   ├── database.json
│   │   │   │   │   │   ├── middleware.json
│   │   │   │   │   │   ├── request.json
│   │   │   │   │   │   ├── response.json
│   │   │   │   │   │   ├── security.json
│   │   │   │   │   │   └── server.json
│   │   │   │   │   ├── production
│   │   │   │   │   │   ├── custom.json
│   │   │   │   │   │   ├── database.heroku.json
│   │   │   │   │   │   ├── database.json
│   │   │   │   │   │   ├── middleware.json
│   │   │   │   │   │   ├── request.json
│   │   │   │   │   │   ├── response.json
│   │   │   │   │   │   ├── security.json
│   │   │   │   │   │   └── server.json
│   │   │   │   │   └── staging
│   │   │   │   │       ├── custom.json
│   │   │   │   │       ├── database.json
│   │   │   │   │       ├── middleware.json
│   │   │   │   │       ├── request.json
│   │   │   │   │       ├── response.json
│   │   │   │   │       ├── security.json
│   │   │   │   │       └── server.json
│   │   │   │   ├── functions
│   │   │   │   │   ├── bootstrap.js
│   │   │   │   │   ├── cron.js
│   │   │   │   │   └── responses
│   │   │   │   │       └── 404.js
│   │   │   │   ├── hook.json
│   │   │   │   ├── language.json
│   │   │   │   ├── locales
│   │   │   │   │   ├── de_de.json
│   │   │   │   │   ├── en_us.json
│   │   │   │   │   ├── es_es.json
│   │   │   │   │   ├── fr_fr.json
│   │   │   │   │   ├── it_it.json
│   │   │   │   │   ├── ja_jp.json
│   │   │   │   │   ├── ru_ru.json
│   │   │   │   │   └── tr_tr.json
│   │   │   │   └── middleware.json
│   │   │   ├── extensions
│   │   │   │   ├── documentation
│   │   │   │   │   ├── documentation
│   │   │   │   │   │   └── 1.0.0
│   │   │   │   │   │       └── full_documentation.json
│   │   │   │   │   └── public
│   │   │   │   │       └── index.html
│   │   │   │   ├── email
│   │   │   │   │   └── documentation
│   │   │   │   │       └── 1.0.0
│   │   │   │   │           └── email-Email.json
│   │   │   │   ├── upload
│   │   │   │   │   └── documentation
│   │   │   │   │       └── 1.0.0
│   │   │   │   │           └── upload-File.json
│   │   │   │   └── users-permissions
│   │   │   │       ├── config
│   │   │   │       │   └── jwt.json
│   │   │   │       └── documentation
│   │   │   │           └── 1.0.0
│   │   │   │               ├── users-permissions-Role.json
│   │   │   │               └── users-permissions-User.json
│   │   │   ├── favicon.ico
│   │   │   ├── middlewares
│   │   │   │   └── editorStatic
│   │   │   │       └── index.js
│   │   │   ├── package.json
│   │   │   ├── public
│   │   │   │   ├── index.html
│   │   │   │   ├── robots.txt
│   │   │   │   ├── third-libs
│   │   │   │   │   ├── animate.min.css
│   │   │   │   │   ├── flexible.js
│   │   │   │   │   ├── swiper-animation.umd.min.js
│   │   │   │   │   ├── swiper.min.css
│   │   │   │   │   ├── swiper.min.js
│   │   │   │   │   └── vue.js
│   │   │   │   └── uploads
│   │   │   ├── server.js
│   │   │   ├── views
│   │   │   │   ├── engine-example.ejs
│   │   │   │   └── engine.ejs
│   │   │   └── yarn.lock
│   │   └── init-lubanh5.sql
│   ├── deploy
│   │   ├── api.luban-h5.conf
│   │   ├── mirror.sh
│   │   └── ubuntu-install.sh
│   ├── docs
│   │   ├── README.md
│   │   ├── deploy.sh
│   │   ├── en
│   │   │   ├── README.md
│   │   │   ├── getting-started
│   │   │   │   ├── deployment.md
│   │   │   │   ├── discussion.md
│   │   │   │   ├── features.md
│   │   │   │   ├── introduction.md
│   │   │   │   └── quick-start.md
│   │   │   ├── implementation
│   │   │   │   ├── code-structure.md
│   │   │   │   └── form-submit.md
│   │   │   ├── migration-guide
│   │   │   │   ├── README.md
│   │   │   │   ├── migration-guide-1.8.0-to-1.8.1.md
│   │   │   │   └── migration-guide-1.8.1-to-1.8.2.md
│   │   │   └── plugin-development
│   │   │       └── quick-start.md
│   │   ├── package.json
│   │   ├── yarn.lock
│   │   └── zh
│   │       ├── README.md
│   │       ├── ecosystem
│   │       │   ├── README.md
│   │       │   ├── backend-intergration.md
│   │       │   └── database-oracle.md
│   │       ├── getting-started
│   │       │   ├── deployment.md
│   │       │   ├── discussion.md
│   │       │   ├── features.md
│   │       │   ├── introduction.md
│   │       │   └── quick-start.md
│   │       ├── implementation
│   │       │   ├── code-structure.md
│   │       │   └── form-submit.md
│   │       ├── migration-guide
│   │       │   ├── README.md
│   │       │   ├── migration-guide-1.8.0-to-1.8.1.md
│   │       │   └── migration-guide-1.8.1-to-1.8.2.md
│   │       └── plugin-development
│   │           ├── README.md
│   │           ├── cli-params.md
│   │           ├── how-it-works
│   │           │   ├── custom-editor-multiple-props.md
│   │           │   ├── custom-editor-single-prop.md
│   │           │   └── simple-prop.md
│   │           ├── plugin-default-inject-props.md
│   │           ├── quick-start.md
│   │           └── reference.md
│   ├── flightplan.example.js
│   ├── front-end
│   │   ├── h5
│   │   │   ├── README.md
│   │   │   ├── babel.config.js
│   │   │   ├── cypress.json
│   │   │   ├── deploy.sh
│   │   │   ├── jest.config.js
│   │   │   ├── jsconfig.json
│   │   │   ├── package.json
│   │   │   ├── postcss.config.js
│   │   │   ├── public
│   │   │   │   ├── favicon.ico
│   │   │   │   ├── img
│   │   │   │   │   └── favicon.ico
│   │   │   │   ├── index.html
│   │   │   │   ├── manifest.json
│   │   │   │   └── robots.txt
│   │   │   ├── src
│   │   │   │   ├── App.vue
│   │   │   │   ├── assets
│   │   │   │   │   ├── 403.svg
│   │   │   │   │   ├── 404.svg
│   │   │   │   │   ├── 500.svg
│   │   │   │   │   ├── favicon.ico
│   │   │   │   │   ├── lbp-picture-placeholder.png
│   │   │   │   │   └── logo.png
│   │   │   │   ├── components
│   │   │   │   │   ├── common
│   │   │   │   │   │   ├── feedback
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── index.scss
│   │   │   │   │   │   ├── header
│   │   │   │   │   │   │   ├── LangSelect.vue
│   │   │   │   │   │   │   ├── links.js
│   │   │   │   │   │   │   └── logo.js
│   │   │   │   │   │   └── work
│   │   │   │   │   │       └── card-cover.js
│   │   │   │   │   ├── core
│   │   │   │   │   │   ├── editor
│   │   │   │   │   │   │   ├── canvas
│   │   │   │   │   │   │   │   ├── edit.js
│   │   │   │   │   │   │   │   └── preview.js
│   │   │   │   │   │   │   ├── edit-panel
│   │   │   │   │   │   │   │   ├── action.js
│   │   │   │   │   │   │   │   ├── animation.js
│   │   │   │   │   │   │   │   ├── background.js
│   │   │   │   │   │   │   │   ├── props
│   │   │   │   │   │   │   │   │   └── global-work.vue
│   │   │   │   │   │   │   │   ├── props.js
│   │   │   │   │   │   │   │   └── script.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── modals
│   │   │   │   │   │   │   │   └── preview.vue
│   │   │   │   │   │   │   ├── page-manager
│   │   │   │   │   │   │   │   └── index.js
│   │   │   │   │   │   │   └── shortcuts-panel
│   │   │   │   │   │   │       ├── index.js
│   │   │   │   │   │   │       ├── load-npm-plugins.vue
│   │   │   │   │   │   │       └── shortcut-button.js
│   │   │   │   │   │   ├── models
│   │   │   │   │   │   │   ├── element.js
│   │   │   │   │   │   │   ├── page.js
│   │   │   │   │   │   │   └── work.js
│   │   │   │   │   │   ├── styles
│   │   │   │   │   │   │   ├── align-guides.scss
│   │   │   │   │   │   │   ├── canvas-wrapper.scss
│   │   │   │   │   │   │   ├── helpers.scss
│   │   │   │   │   │   │   ├── index.scss
│   │   │   │   │   │   │   ├── page-manager.scss
│   │   │   │   │   │   │   ├── shape.scss
│   │   │   │   │   │   │   ├── shortcut-btn.scss
│   │   │   │   │   │   │   └── spacing-helpers.scss
│   │   │   │   │   │   └── support
│   │   │   │   │   │       ├── adjust-line
│   │   │   │   │   │       │   └── vertical.js
│   │   │   │   │   │       ├── contexmenu.js
│   │   │   │   │   │       ├── image-gallery
│   │   │   │   │   │       │   ├── components
│   │   │   │   │   │       │   │   ├── image-item.js
│   │   │   │   │   │       │   │   └── uploader.js
│   │   │   │   │   │       │   ├── gallery.js
│   │   │   │   │   │       │   ├── gallery.scss
│   │   │   │   │   │       │   └── tabs
│   │   │   │   │   │       │       ├── personal.js
│   │   │   │   │   │       │       └── pixabay.js
│   │   │   │   │   │       ├── index.js
│   │   │   │   │   │       ├── prop-multi-items-editor
│   │   │   │   │   │       │   └── text.js
│   │   │   │   │   │       ├── shape.js
│   │   │   │   │   │       └── video-gallery
│   │   │   │   │   │           ├── components
│   │   │   │   │   │           │   ├── uploader.js
│   │   │   │   │   │           │   └── video-item.js
│   │   │   │   │   │           ├── gallery.js
│   │   │   │   │   │           ├── gallery.scss
│   │   │   │   │   │           └── tabs
│   │   │   │   │   │               └── personal.js
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   ├── bg-music.svg
│   │   │   │   │   │   ├── lbp-background.js
│   │   │   │   │   │   ├── lbp-bg-music.js
│   │   │   │   │   │   ├── lbp-button.js
│   │   │   │   │   │   ├── lbp-form-button.js
│   │   │   │   │   │   ├── lbp-form-checkbox-group.js
│   │   │   │   │   │   ├── lbp-form-input.js
│   │   │   │   │   │   ├── lbp-form-radio-group.js
│   │   │   │   │   │   ├── lbp-form-radio.js
│   │   │   │   │   │   ├── lbp-notice-bar.js
│   │   │   │   │   │   ├── lbp-picture-placeholder.png
│   │   │   │   │   │   ├── lbp-picture.js
│   │   │   │   │   │   ├── lbp-rate.js
│   │   │   │   │   │   ├── lbp-slide.js
│   │   │   │   │   │   ├── lbp-slide__editor.js
│   │   │   │   │   │   ├── lbp-text.js
│   │   │   │   │   │   ├── lbp-video.js
│   │   │   │   │   │   ├── play.svg
│   │   │   │   │   │   └── styles
│   │   │   │   │   │       ├── bg-music.scss
│   │   │   │   │   │       ├── radio.scss
│   │   │   │   │   │       ├── text-overwrite-quil-snow-theme.scss
│   │   │   │   │   │       └── video.scss
│   │   │   │   │   └── preview
│   │   │   │   │       └── node-wrapper.js
│   │   │   │   ├── constants
│   │   │   │   │   ├── animation.js
│   │   │   │   │   └── api.js
│   │   │   │   ├── engine-entry.js
│   │   │   │   ├── locales
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── lang
│   │   │   │   │       ├── en-US.js
│   │   │   │   │       └── zh-CN.js
│   │   │   │   ├── main.js
│   │   │   │   ├── mixins
│   │   │   │   │   ├── animation.js
│   │   │   │   │   ├── i18n.js
│   │   │   │   │   └── load-plugins.js
│   │   │   │   ├── registerServiceWorker.js
│   │   │   │   ├── router.js
│   │   │   │   ├── store
│   │   │   │   │   ├── index.js
│   │   │   │   │   ├── modules
│   │   │   │   │   │   ├── editor.js
│   │   │   │   │   │   ├── element.js
│   │   │   │   │   │   ├── i18n.js
│   │   │   │   │   │   ├── loading.js
│   │   │   │   │   │   ├── page.js
│   │   │   │   │   │   ├── user.js
│   │   │   │   │   │   ├── visible.js
│   │   │   │   │   │   └── work.js
│   │   │   │   │   └── plugins
│   │   │   │   │       └── undo-redo
│   │   │   │   │           ├── History.js
│   │   │   │   │           └── index.js
│   │   │   │   ├── utils
│   │   │   │   │   ├── canvas-helper.js
│   │   │   │   │   ├── dom-helper.js
│   │   │   │   │   ├── element.js
│   │   │   │   │   ├── http.js
│   │   │   │   │   └── strapi.js
│   │   │   │   └── views
│   │   │   │       ├── About.vue
│   │   │   │       ├── Editor.vue
│   │   │   │       ├── Home.vue
│   │   │   │       └── work-manager
│   │   │   │           ├── form-stat
│   │   │   │           │   ├── column.js
│   │   │   │           │   ├── detail.vue
│   │   │   │           │   └── index.vue
│   │   │   │           ├── index.vue
│   │   │   │           ├── list.vue
│   │   │   │           └── templates.vue
│   │   │   ├── tests
│   │   │   │   ├── e2e
│   │   │   │   │   ├── plugins
│   │   │   │   │   │   └── index.js
│   │   │   │   │   ├── specs
│   │   │   │   │   │   └── test.js
│   │   │   │   │   └── support
│   │   │   │   │       ├── commands.js
│   │   │   │   │       └── index.js
│   │   │   │   └── unit
│   │   │   │       └── example.spec.js
│   │   │   ├── vue.config.js
│   │   │   └── yarn.lock
│   │   └── landing-page
│   │       ├── README.md
│   │       ├── deploy.sh
│   │       ├── package.json
│   │       ├── src
│   │       │   ├── Index
│   │       │   │   ├── Banner.jsx
│   │       │   │   ├── BannerImage.jsx
│   │       │   │   ├── Footer.jsx
│   │       │   │   ├── Header.jsx
│   │       │   │   ├── Page1.jsx
│   │       │   │   ├── Page2.jsx
│   │       │   │   ├── Page3.jsx
│   │       │   │   ├── Page4.jsx
│   │       │   │   ├── data.js
│   │       │   │   ├── index.jsx
│   │       │   │   └── static
│   │       │   │       ├── custom.less
│   │       │   │       ├── default.less
│   │       │   │       ├── footer.less
│   │       │   │       ├── header.less
│   │       │   │       ├── home.less
│   │       │   │       ├── responsive.less
│   │       │   │       └── style.js
│   │       │   ├── Index-En
│   │       │   │   ├── Banner.jsx
│   │       │   │   ├── BannerImage.jsx
│   │       │   │   ├── Footer.jsx
│   │       │   │   ├── Header.jsx
│   │       │   │   ├── Page1.jsx
│   │       │   │   ├── Page2.jsx
│   │       │   │   ├── Page3.jsx
│   │       │   │   ├── Page4.jsx
│   │       │   │   ├── data.js
│   │       │   │   ├── index.jsx
│   │       │   │   └── static
│   │       │   │       ├── custom.less
│   │       │   │       ├── default.less
│   │       │   │       ├── footer.less
│   │       │   │       ├── header.less
│   │       │   │       ├── home.less
│   │       │   │       ├── responsive.less
│   │       │   │       └── style.js
│   │       │   ├── Page2
│   │       │   │   ├── Banner0.jsx
│   │       │   │   ├── Content0.jsx
│   │       │   │   ├── Content12.jsx
│   │       │   │   ├── Content13.jsx
│   │       │   │   ├── Content7.jsx
│   │       │   │   ├── data.source.js
│   │       │   │   ├── documentation.md
│   │       │   │   ├── index.jsx
│   │       │   │   └── less
│   │       │   │       ├── antMotionStyle.less
│   │       │   │       ├── banner0.less
│   │       │   │       ├── common.less
│   │       │   │       ├── content.less
│   │       │   │       ├── content0.less
│   │       │   │       ├── content12.less
│   │       │   │       ├── content13.less
│   │       │   │       ├── content7.less
│   │       │   │       ├── custom.less
│   │       │   │       ├── edit.less
│   │       │   │       ├── footer0.less
│   │       │   │       └── nav0.less
│   │       │   ├── assets
│   │       │   │   └── home
│   │       │   │       └── banner.svg
│   │       │   ├── constants
│   │       │   │   └── config.js
│   │       │   ├── global.less
│   │       │   ├── layouts
│   │       │   │   ├── Footer0.jsx
│   │       │   │   ├── Nav0.jsx
│   │       │   │   ├── data.source.js
│   │       │   │   ├── footer0.less
│   │       │   │   ├── index.js
│   │       │   │   └── nav0.less
│   │       │   └── pages
│   │       │       ├── document.ejs
│   │       │       ├── index-en.js
│   │       │       ├── index.css
│   │       │       ├── index.js
│   │       │       └── page2.js
│   │       └── yarn.lock
│   ├── luban-h5.sh
│   ├── package.json
│   ├── sync2server.sh
│   └── yarn.lock
└── 好例子网_鲁班H5页面生成工具.zip

126 directories, 332 files