https://github.com/jazzfog/livebox
A jQuery Lightbox Plugin (Deprecated)
https://github.com/jazzfog/livebox
jquery jquery-plugin jquery-ui livebox plugin
Last synced: 5 months ago
JSON representation
A jQuery Lightbox Plugin (Deprecated)
- Host: GitHub
- URL: https://github.com/jazzfog/livebox
- Owner: jazzfog
- Created: 2016-03-13T22:52:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T05:55:09.000Z (over 5 years ago)
- Last Synced: 2025-03-16T01:30:49.576Z (9 months ago)
- Topics: jquery, jquery-plugin, jquery-ui, livebox, plugin
- Language: JavaScript
- Homepage:
- Size: 71.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# (Deprecated) LiveBox - A jQuery Lightbox Plugin
**Warning: The project is deprecated, use at your wown risk**
## Key features
- Clear documentation full of editable demos
- Supports variety of content types, such as html, images, video, iframe, ajax and others
- Drag&drop and auto resize
- Overlaying LiveBoxes (open one on top of another)
- API for controlling LiveBox, including resizing and catching events
- Chaining content (slideshow) including mixed content
- Image preloading
- Highly customizable look
- JavaScript knowledge not required
#### Install
bower install livebox
If you do not use [bower](http://bower.io) you can [download files](https://github.com/jazzfog/LiveBox/archive/master.zip) from this repository and include it in your project.
#### Some examples
Simple HTML
```javascript
$(function () {
$.livebox({
type: 'html',
content: 'Hello, World!'
});
});
```
Content from DOM element, reaction on event
```javascript
$(function () {
$.livebox({
content: '#divWithContent',
width: 500,
height: 300,
events: {
show: function () {
console.log('Window is open')
}
}
});
});
```
Full documentation and demos on website - [liveboxjs.com](http://liveboxjs.com)