<h1 align="center">
<a href="http://plugins.krajee.com" title="Krajee Plugins" target="_blank">
<img src="http://kartik-v.github.io/bootstrap-fileinput-samples/samples/krajee-logo-b.png" alt="Krajee Logo"/>
</a>
<br>
bootstrap-fileinput
<hr>
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DTP3NZQ6G2AYU"
title="Donate via Paypal" target="_blank">
<img src="http://kartik-v.github.io/bootstrap-fileinput-samples/samples/donate.png" alt="Donate"/>
</a>
</h1>
[![Financial Contributors on Open Collective](https://opencollective.com/bootstrap-fileinput/all/badge.svg?label=financial+contributors)](https://opencollective.com/bootstrap-fileinput)
[![Bower version](https://badge.fury.io/bo/bootstrap-fileinput.svg)](http://badge.fury.io/bo/bootstrap-fileinput)
[![Latest Stable Version](https://poser.pugx.org/kartik-v/bootstrap-fileinput/v/stable)](https://packagist.org/packages/kartik-v/bootstrap-fileinput)
[![License](https://poser.pugx.org/kartik-v/bootstrap-fileinput/license)](https://packagist.org/packages/kartik-v/bootstrap-fileinput)
[![Packagist Downloads](https://poser.pugx.org/kartik-v/bootstrap-fileinput/downloads)](https://packagist.org/packages/kartik-v/bootstrap-fileinput)
[![Monthly Downloads](https://poser.pugx.org/kartik-v/bootstrap-fileinput/d/monthly)](https://packagist.org/packages/kartik-v/bootstrap-fileinput)
An enhanced HTML 5 file input for Bootstrap 3.x and 4.x with file preview for various files, offers multiple selection, resumable chunk uploads, and more. The plugin allows you a simple way to setup an advanced file picker/upload control built to work specially with Bootstrap 3.x or 4.x CSS3 styles. It enhances the file input functionality further, by offering support to preview a wide variety of files i.e. images, text, html, video, audio, flash, and objects. In addition, it includes AJAX based uploads, dragging & dropping files, viewing upload progress, and selectively previewing, adding, or deleting files.
> NOTE: Version 5.x is a significant rewrite. With version 5.x, the plugin code has been revamped with enhanced file management, resumable chunk uploads support, and other new features. You can go through the various closed enhancements and features and documented for [Release 5.x milestone](https://github.com/kartik-v/bootstrap-fileinput/milestone/1?closed=1).
![Krajee Default Theme](https://user-images.githubusercontent.com/3592619/60393698-ea1fc280-9b36-11e9-9f16-b27c529d6819.png)
> NOTE: An alternative new [Krajee Explorer Theme](http://plugins.krajee.com/file-krajee-explorer-demo) (preview shown below) for `bootstrap-fileinput` has been released and available since v4.3.7. For more theming options and suggestions refer the [theming demos](http://plugins.krajee.com/file-theme-demo).
![Krajee Explorer Theme](https://user-images.githubusercontent.com/3592619/60393721-51d60d80-9b37-11e9-991c-810c942ac516.png)
## Documentation and Demo
View the [plugin documentation](http://plugins.krajee.com/file-input) and [plugin demos](http://plugins.krajee.com/file-input/demo) at Krajee JQuery plugins.
## Pre-requisites
1. [Bootstrap 3.x or 4.x](http://getbootstrap.com/)
2. Latest [JQuery](http://jquery.com/)
3. Most modern browsers supporting HTML5 (inputs and FileReader API) including CSS3 & JQuery. For Internet Explorer, one must use IE versions 10 and above. IE9 and below will work as a normal file input, and will not support multiple file selection or the HTML 5 FileReader API.
4. With release 4.0, AJAX uploads are supported. AJAX uploads require that the browser support HTML5 FormData and XHR2 (XMLHttpRequest 2). Most modern browsers support FormData and XHR2. The plugin will automatically degrade to normal form based submission for browsers not supporting AJAX uploads
> NOTE:
> - Bootstrap 4.x is supported in addition to Bootstrap 3.x since release v4.4.4. Refer the [CHANGE LOG](https://github.com/kartik-v/bootstrap-fileinput/blob/master/CHANGE.md) for details.
> - You can use the [sass branch](https://github.com/kartik-v/bootstrap-fileinput/tree/sass) for installation using `bootstrap-sass` dependency.
The [master branch](https://github.com/kartik-v/bootstrap-fileinput/tree/master) can be used for installation using plain `bootstrap` dependency.
## Installation
### Using Bower
To install using the `bower` package manager run:
bower install bootstrap-fileinput
### Using NPM
To install using the `npm` package manager run:
npm install bootstrap-fileinput
### Using Composer
To install using the `composer` package manager run:
$ php composer.phar require kartik-v/bootstrap-fileinput "@dev"
or add:
"kartik-v/bootstrap-fileinput": "@dev"
to your composer.json file
### Manual Install
You can also manually install the plugin easily to your project. Just download the source [ZIP](https://github.com/kartik-v/bootstrap-fileinput/zipball/master) or [TAR ball](https://github.com/kartik-v/bootstrap-fileinput/tarball/master) and extract the plugin assets (css and js folders) into your project.
## Usage
Step 1: Load the following assets in your header.
```html
<!-- bootstrap 4.x is supported. You can also use the bootstrap css 3.3.x versions -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.1.5/css/fileinput.min.css" media="all" rel="stylesheet" type="text/css" />
<!-- if using RTL (Right-To-Left) orientation, load the RTL CSS file after fileinput.css by uncommenting below -->
<!-- link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.1.5/css/fileinput-rtl.min.css" media="all" rel="stylesheet" type="text/css" /-->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<!-- piexif.min.js is needed for auto orienting image files OR when restoring exif data in resized images and when you
wish to resize images before upload. This must be loaded before fileinput.min.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.1.5/js/plugins/piexif.min.js" type="text/javascript"></script>
<!-- sortable.min.js is only needed if you wish to sort / rearrange files in initial preview.
This must be loaded before fileinput.min.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.1.5/js/plugins/sortable.min.js" type="text/javascript"></script>
<!-- popper.min.js below is needed if you use bootstrap 4.x. You can also use the bootstrap js
3.3.x versions without popper.min.js. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- bootstrap.min.js below is needed if you wish to zoom and preview file content in a detail modal
dialog. bootstrap 4.x is supported. You can also use the bootstrap js 3.3.x versions. -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" type="text/javascript"></script>
<!-- the main fileinput plugin file -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.1.5/js/fileinput.min.js"></script>
<!-- optionally if you need a theme like font awesome theme you can include it as mentioned below -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.1.5/themes/fa/theme.js"></script>
<!-- optionally if you need translation for your language then include locale file as mentioned below -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-fileinput/5.1.5/js/locales/(lang).js"></script>
```
If you noticed, you need to load the `jquery.min.js` and `bootstrap.min.css` in addition to the `fileinput.min.css` and `fileinput.min.js`. The theme file `themes/fa/theme.js` can be optionally included for the font awesome icons styling. The locale file `<lang>.js` can be optionally included for translating for your language if needed.
**Optional Dependent Plugins**
没有合适的资源?快使用搜索试试~ 我知道了~
基于SSM的房屋出租管理系统源码+数据库(毕业设计).zip
共505个文件
jpg:188个
js:83个
java:65个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 1 下载量 22 浏览量
2022-11-20
08:46:57
上传
评论
收藏 37.04MB ZIP 举报
温馨提示
基于SSM的房屋出租管理系统源码+数据库(毕业设计).zip已获导师指导并通过的高分项目 本项目是一套基于SSM的房屋出租管理系统,主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的Java学习者。也可作为课程设计、期末大作业 包含:项目源码、数据库脚本、软件工具、项目说明等,该项目可以直接作为毕设使用。 项目都经过严格调试,确保可以运行! 框架:ssm 使用的数据库是mysql ,操作数据库使用的是 MyBatis-Plus 该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值。该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值。该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值。该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值基于SSM的房屋出租管理系统源码+数据库(毕业设计).zip基于SSM的房屋出租管理系统源码+数据库(毕业设计).zip基于SSM的房屋出租管理系统源码+数据库(毕业设计).zip基于SSM的房屋出租管理系统源码+数据库(毕业设计).zip
资源推荐
资源详情
资源评论
收起资源包目录
基于SSM的房屋出租管理系统源码+数据库(毕业设计).zip (505个子文件)
build.bat 1KB
styles.css 258KB
bootstrap.min.css 162KB
iconfont.css 90KB
colors.css 58KB
font-awesome.css 55KB
animation.css 55KB
line-icons.css 22KB
select2.css 15KB
themify.css 14KB
fileinput.css 11KB
ion.rangeSlider.min.css 11KB
dropzone.css 9KB
fileinput.min.css 9KB
magnifypopup.css 7KB
date-picker.css 6KB
flaticon.css 5KB
pay.css 5KB
theme.css 4KB
theme.css 4KB
theme.css 4KB
theme.min.css 3KB
theme.min.css 3KB
theme.min.css 3KB
light-box.css 3KB
slick-theme.css 2KB
fileinput-rtl.css 2KB
fileinput-rtl.min.css 2KB
slick.css 2KB
morris.css 433B
fa-brands-400.eot 0B
themify (1).eot 0B
slick.eot 0B
fa-solid-900.eot 0B
themify.eot 0B
houses.eot 0B
fontawesome-webfont.eot 0B
LineIcons.eot 0B
Flaticon.eot 0B
fa-regular-400.eot 0B
ajax-loader.gif 44KB
loading.gif 8KB
loading-sm.gif 3KB
loading.gif 847B
.gitignore 64B
.gitignore 40B
index.html 9KB
houserent.iml 12KB
HouseController.java 9KB
AdminOrderController.java 7KB
OrderController.java 7KB
NewsController.java 4KB
UserController.java 4KB
AdminFeedbackController.java 3KB
BaseService.java 3KB
RegisterController.java 3KB
HouseServiceImpl.java 2KB
AdminMarkController.java 2KB
HouseDetailController.java 2KB
BaseController.java 2KB
MvcConfig.java 2KB
LoginController.java 2KB
FeedbackController.java 2KB
House.java 2KB
DateUtil.java 2KB
FrontNewsController.java 2KB
PageUtil.java 2KB
HomeController.java 2KB
ProfileController.java 2KB
MarkServiceImpl.java 2KB
FileController.java 2KB
Mail.java 2KB
OrderServiceImpl.java 2KB
MarkController.java 2KB
FileUtil.java 2KB
JsonResult.java 1KB
UserServiceImpl.java 1KB
IndexController.java 1KB
CreateCode.java 1KB
NewsServiceImpl.java 1KB
FeedbackServiceImpl.java 1KB
Order.java 1KB
HouseMapper.java 1KB
AdminInterceptor.java 1KB
OwnerInterceptor.java 1KB
User.java 948B
CustomerInterceptor.java 866B
HouseService.java 831B
Constant.java 802B
OrderStatusEnum.java 773B
Application.java 768B
MybatisPlusConfig.java 719B
HouseStatusEnum.java 625B
Feedback.java 621B
FilterUtil.java 615B
HouseSearchVO.java 597B
BaseEntity.java 578B
FeedbackStatusEnum.java 480B
Mark.java 472B
UserRoleEnum.java 457B
共 505 条
- 1
- 2
- 3
- 4
- 5
- 6
资源评论
- Xxyuuu2023-02-11发现一个宝藏资源,资源有很高的参考价值,赶紧学起来~
程序员张小妍
- 粉丝: 1w+
- 资源: 3252
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功