<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**
没有合适的资源?快使用搜索试试~ 我知道了~
基于SpringBoot的房屋租赁管理系统源码+数据库(毕业设计).zip
共905个文件
js:170个
jpg:120个
xml:118个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 11 下载量 21 浏览量
2023-02-03
11:23:50
上传
评论 17
收藏 188.92MB ZIP 举报
温馨提示
基于SpringBoot的房屋租赁管理系统源码+数据库.zip 已获导师指导并通过的高分毕设项目,下载即用无需修改。 基于SpringBoot的房屋租赁管理系统源码+数据库.zip 已获导师指导并通过的高分毕设项目,下载即用无需修改。本系统选择B/S模式,其具有两个突出的优势,第一,能够帮助使用者在没有下载专业软件的时候,也可以对系统进行二次开发,第二,操作简单。这个系统能够在完全不影响使用者的操作习惯的条件下,对相关信息进行记录。主要功能模块有系统用户管理模块与房屋租赁模块,包括用户注册,首页登录,用户信息修改,论坛查看,发帖回帖,管理员后台登录,房屋信息查看,租房,租房审核,房源信息管理等功能。 基于SpringBoot的房屋租赁管理系统源码+数据库.zip 已获导师指导并通过的高分毕设项目,下载即用无需修改。 基于SpringBoot的房屋租赁管理系统源码+数据库.zip 已获导师指导并通过的高分毕设项目,下载即用无需修改。本系统选择B/S模式,其具有两个突出的优势,第一,能够帮助使用者在没有下载专业软件的时候,也可以对系统进行二次开发,第二,操作简单。这个系统能够在完全不
资源推荐
资源详情
资源评论
收起资源包目录
基于SpringBoot的房屋租赁管理系统源码+数据库(毕业设计).zip (905个子文件)
build.bat 1KB
build.bat 1KB
House.class 18KB
OrderController.class 9KB
HouseController.class 8KB
Order.class 7KB
HouseSearchVO.class 7KB
User.class 7KB
OrderController.class 7KB
HouseServiceImpl.class 6KB
HouseController.class 5KB
BaseService.class 5KB
UserController.class 5KB
NewsController.class 5KB
Feedback.class 4KB
FeedbackController.class 4KB
MarkController.class 4KB
HomeController.class 4KB
JsonResult.class 4KB
MvcConfig.class 3KB
OrderServiceImpl.class 3KB
MarkServiceImpl.class 3KB
FileController.class 3KB
FeedbackController.class 3KB
NewsController.class 3KB
Mark.class 3KB
LoginController.class 3KB
RegisterController.class 3KB
UserServiceImpl.class 3KB
PageUtil.class 2KB
FeedbackServiceImpl.class 2KB
News.class 2KB
BaseController.class 2KB
MarkController.class 2KB
ProfileController.class 2KB
FileUtil.class 2KB
BaseEntity.class 2KB
TimerTask.class 2KB
NewsServiceImpl.class 2KB
DateUtil.class 2KB
OrderStatusEnum.class 2KB
MailUtil.class 2KB
HouseStatusEnum.class 2KB
IndexController.class 2KB
Application.class 2KB
OwnerInterceptor.class 2KB
AdminInterceptor.class 2KB
FeedbackStatusEnum.class 2KB
UserStatusEnum.class 2KB
UserRoleEnum.class 2KB
ErrorController.class 2KB
HouseRentTypeEnum.class 2KB
CustomerInterceptor.class 1KB
HouseService.class 1KB
HouseMapper.class 1KB
Constant.class 1KB
MybatisPlusConfig.class 992B
OrderMapper.class 650B
OrderService.class 593B
MarkService.class 574B
UserService.class 461B
FeedbackMapper.class 409B
MarkMapper.class 397B
NewsMapper.class 397B
UserMapper.class 397B
FeedbackService.class 347B
NewsService.class 335B
styles.css 258KB
styles.css 258KB
bootstrap.min.css 162KB
bootstrap.min.css 162KB
iconfont.css 90KB
iconfont.css 90KB
colors.css 58KB
colors.css 58KB
font-awesome.css 55KB
font-awesome.css 55KB
animation.css 55KB
animation.css 55KB
line-icons.css 22KB
line-icons.css 22KB
select2.css 15KB
select2.css 15KB
themify.css 14KB
themify.css 14KB
fileinput.css 11KB
fileinput.css 11KB
ion.rangeSlider.min.css 11KB
ion.rangeSlider.min.css 11KB
dropzone.css 9KB
dropzone.css 9KB
fileinput.min.css 9KB
fileinput.min.css 9KB
magnifypopup.css 7KB
magnifypopup.css 7KB
date-picker.css 6KB
date-picker.css 6KB
flaticon.css 5KB
flaticon.css 5KB
pay.css 5KB
共 905 条
- 1
- 2
- 3
- 4
- 5
- 6
- 10
猰貐的新时代
- 粉丝: 1w+
- 资源: 2559
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于springboot mybatis+Mysql 实现的图书管理系统 【web课程设计 】
- 伯克利大学机器学习-7Hidden Markov models& graphical models
- 资质证书系统网站源码 证书在线查询系统源码 自适应手机端
- springboot在线商城系统设计与开发-代码
- java-leetcode题解之Possible Bipartition.java
- java-leetcode题解之Positions of Large Groups.java
- java-leetcode题解之Populating Next Right Pointers in Each Node
- 伯克利大学机器学习-5Dimensionality reduction [Percy Liang]
- SwiftUI编写的贪吃蛇小游戏讲解
- 瑞昱主控 RTS5876 规格书
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
前往页