【例子介绍】phpcms上传图片之前用的flash,现在flash关闭改成h5
【相关图片】
【源码结构】.
├── README.md
├── phpcms
│ ├── libs
│ │ └── classes
│ │ └── image.class.php
│ └── modules
│ ├── attachment
│ │ ├── attachments.php
│ │ ├── functions
│ │ │ └── global.func.php
│ │ └── templates
│ │ ├── album_dir.tpl.php
│ │ ├── album_list.tpl.php
│ │ ├── header.tpl.php
│ │ └── swfupload.tpl.php
│ └── content
│ ├── content.php
│ ├── fields
│ │ └── image
│ │ └── form.inc.php
│ └── templates
│ ├── content_add.tpl.php
│ ├── content_edit.tpl.php
│ └── crop.tpl.php
├── phpcms上传图片提示重新登录改h5上传的方法.zip
└── statics
├── css
│ ├── dialog.css
│ ├── dialog_simp.css
│ ├── iconfont
│ │ ├── iconfont.eot
│ │ ├── iconfont.min.css
│ │ ├── iconfont.svg
│ │ ├── iconfont.ttf
│ │ └── iconfont.woff
│ └── reset.css
└── js
├── admin_common.js
├── assets
│ ├── ds.min.js
│ └── images
│ ├── icon_item_cur.png
│ └── icon_item_hover.png
├── content_addtop.js
├── cropper
│ └── 3.1.6
│ ├── cropper.css
│ └── cropper.js
├── dialog.js
├── layer
│ ├── layer.js
│ ├── mobile
│ │ ├── layer.js
│ │ └── need
│ │ └── layer.css
│ └── theme
│ └── default
│ ├── icon-ext.png
│ ├── icon.png
│ ├── layer.css
│ ├── loading-0.gif
│ ├── loading-1.gif
│ └── loading-2.gif
├── swfupload
│ ├── handlers.js
│ ├── swf2ckeditor.js
│ └── swfupload.css
└── uploadify
└── 3.2.1
├── jquery.uploadifive.min.js
├── jquery.uploadify.min.js
├── uploadifive.css
├── uploadify-cancel.png
├── uploadify.css
└── uploadify.swf
27 directories, 48 files
评论