lobibox

WebJar for lobibox

License

License

MIT
Categories

Categories

Github Development Tools Version Controls
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

github-com-arboshiki-lobibox
Last Version

Last Version

v1.2.4
Release Date

Release Date

Type

Type

jar
Description

Description

lobibox
WebJar for lobibox
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/arboshiki/lobibox

Download github-com-arboshiki-lobibox

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/github-com-arboshiki-lobibox/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>github-com-arboshiki-lobibox</artifactId>
    <version>v1.2.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-arboshiki-lobibox/
implementation 'org.webjars.bower:github-com-arboshiki-lobibox:v1.2.4'
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-arboshiki-lobibox/
implementation ("org.webjars.bower:github-com-arboshiki-lobibox:v1.2.4")
'org.webjars.bower:github-com-arboshiki-lobibox:jar:v1.2.4'
<dependency org="org.webjars.bower" name="github-com-arboshiki-lobibox" rev="v1.2.4">
  <artifact name="github-com-arboshiki-lobibox" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='github-com-arboshiki-lobibox', version='v1.2.4')
)
libraryDependencies += "org.webjars.bower" % "github-com-arboshiki-lobibox" % "v1.2.4"
[org.webjars.bower/github-com-arboshiki-lobibox "v1.2.4"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.bower : jquery jar [1.9.1,3)

Project Modules

There are no modules declared in this project.

Lobibox

Responsive jQuery notification plugin written from scratch.

View Demo

Description

Lobibox is divided into two parts
  • Messageboxes
  • Notifications

Messageboxes

  • Lobibox messagesboxes can be modal and not modal
  • Possibility to show multiple messages
  • Use any available animation class for showing and hiding messageboxes
  • Every message can be draggable (On small screens dragging is disabled)
  • You can show
    • messagesboxes in different colors and icons
    • confirm message
    • one line prompt (Any HTML5 input type can be used in prompt window. Such as: text, color, date, datetime, email, number, range etc)
    • multiline prompt
    • Progress messagebox. Lobibox comes with default progress style but you can use bootstrap or any other style progress bar.
    • custom content window with ajax support with custom action buttons
  • Every message is an instance of plugin. You can easily grab the instance and attach events or call methods directly on the instance.

Notifications

  • Different color support
  • Possibility to show in any corners of the screen
  • Delay
  • Show delay indicator
  • Show with image
  • Sound support
  • Size support. You can show notifications of different size

Installation and dependecies

Lobibox is only depended on jQuery. But for best visual result and icons it's highly recommended to include bootstrap.css

1. Include necessary css/js files

<!DOCTYPE html>
<html>
   <head>
      <!--Include this css file in the <head> tag -->
      <link rel="stylesheet" href="bootstrap/dist/css/bootstrap.min.css"/>
      <link rel="stylesheet" href="dist/css/Lobibox.min.css"/>
   </head>
   
   <body>
      ...
      <!--Include these script files in the <head> or <body> tag-->
      <script src="lib/jquery.1.11.min.js"></script>
      <script src="dist/js/Lobibox.min.js"></script>
      <!-- If you do not need both (messageboxes and notifications) you can inclue only one of them -->
      <!-- <script src="dist/js/messageboxes.min.js"></script> -->
      <!-- <script src="dist/js/notifications.min.js"></script> -->
   </body>
</html>

2. Call plugin method to show messageboxes or notifications

...

For documentation and examples visit the plugin's home page

Versions

Version
v1.2.4