jkso / popModal

jquery plugin for showing tooltips, titles, modal dialogs and etc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

popModal

This library includes 5 components:
popModal - popup window, displayed near the parent element. Invoked by clicking on an element
notifyModal - notification popup, displayed on top of all elements. Invoked by event and hide after a certain time
hintModal - tooltip, displayed near the parent element. Invoked on mouse hover on an element and hide after element lost focus
dialogModal - modal dialog, displayed on top of all elements. Invoked by clicking on an element
titleModal - tooltip, displayed near the parent element, replace native title. Invoked on mouse hover on an element and hide after element lost focus

For work required only jQuery, other libraries are not required.

DEMO

Direct links to libs

popModal.js [22.9Kb]
popModal.min.js [11.2Kb]
popModal.css [12.6Kb]
popModal.min.css [11.4Kb]

Documentation

popModal

$(el).popModal({param1 : value1, param2 : value2, ...});

Parameters
html - static html, dinamic html, string, function (object, string, function). Use function if you want load content via ajax.
Use: el.append(html), $(el).html(), 'text' or function(){}

placement - popup position (string).
Use: 'bottomLeft' - default, 'bottomCenter', 'bottomRight', 'leftTop', 'leftCenter', 'rightTop', 'rightCenter'

showCloseBut - show/hide close button on popup (boolean).
Use: true - default, false

onDocumentClickClose - close popup when click on any place (boolean).
Use: true - default, false

onOkBut - code execution by clicking on OK button, contained in popup (function).
Use: function(){}.
For work you need put an attribute to element - data-popModalBut="ok". Popup will close automatically

onCancelBut - code execution by clicking on Cancel button, contained in popup (function).
Use: function(){}.
For work you need put an attribute to element - data-popModalBut="cancel". Popup will close automatically

onLoad - code execution before popup shows (function).
Use: function(){}

onClose - code execution after popup closed (function).
Use: function(){}

Methods
hide - for close popModal.
Use: $('html').popModal("hide");

Notes
You may use external click function for element
$(el).click(function(){
  $(el).popModal({param1 : value1, param2 : value2, ...});
});
or use
$(el).popModal({param1 : value1, param2 : value2, ...});

Also you may use inline bind

<button id="elem" data-popModalBind="#content" data-placement="bottomLeft" data-showCloseBut="true" data-overflowContent="true" data-onDocumentClickClose="true">example</button>

Popup is dynamically created. When you create the second popup, the first will be deleted!
For create footer in popup, use element div with class="popModal_footer". You can use attribute for element data-popModalBut="close" for close popup, also you can press ESC, or click on any place.



notifyModal

$(content).notifyModal({param1 : value1, param2 : value2, ...});

Parameters
duration - duration for show notification in ms (integer)
Use: 2500 - default, -1 for infinity

placement - position (string).
Use: 'center' - default, 'leftTop', 'centerTop', 'rightTop', 'leftBottom', 'centerBottom', 'rightBottom'

onTop - show notification popup on top of the content (boolean).
Use: true - default, false
With placement : 'center', onTop will work as true.
Notes
You can close this notification popup, by clicking on any place, close button or press ESC.



hintModal

hintModal();

Use: You need to create html with class="hintModal" as parent element and put in this element div with class="hintModal_container", put here html, to be displayed.
To change position, add additional class class="hintModal_center" or class="hintModal_right" to parent element.

Notes
hintModal will be called automatically if document have elements with the class "hintModal".



dialogModal

$(content).dialogModal({param1 : value1, param2 : value2, ...});

Parameters
onOkBut - code execution by clicking on OK button, contained in dialog (function).
Use: function(){}.
For work you need put an attribute to element - data-dialogModalBut="ok". Dialog will close automatically

onCancelBut - code execution by clicking on Cancel button, contained in dialog (function).
Use: function(){}.
For work you need put an attribute to element - data-dialogModalBut="cancel". Dialog will close automatically

onLoad - code execution before dialog shows (function).
Use: function(){}

onClose - code execution after dialog closed (function).
Use: function(){}

Methods
hide - for close dialogModal.
Use: $('html').dialogModal("hide");

Notes
You may use external click function for element
$(el).click(function(){
  $(content).dialogModal({param1 : value1, param2 : value2, ...});
});
or use
$(content).dialogModal({param1 : value1, param2 : value2, ...});

Dialog is dynamically created. When you create the second dialog, the first will be deleted!
You need to create div elements with classes class="dialogModal_header" - for show header, class="dialogModal_content" - for show content, and class="dialogModal_footer" - for show footer.
You can use attribute for element data-dialogModalBut="close" for close dialog, also you can press ESC. To show collection of content, like pages in one modal dialog, use class for this dialogs. If you want to use collection of content, you can change content by clicking to arrows, or press left/right arrow on keayboard.



titleModal

Use: You need to put attribute title and data-titleModal="title".
titleModal will show by default at the bottom, to change position, put attribute data-placement="top". You can use top, left or right.

Notes
titleModal will be called automatically if document have elements with the attribute title and "data-titleModal='init'".

Examples

popModal

$(el).popModal({
  html : $(content).html(),
  placement : 'bottomLeft',
  showCloseBut : true,
  overflowContent : true,
  onOkBut : function(){},
  onCancelBut : function(){},
  onLoad : function(){},
  onClose : function(){}
});
$(el).popModal({
  html : function(callback) {
    $.ajax({url:'ajax.html'}).done(function(content){
      callback(content);
    });
  }
});

notifyModal

$(content).notifyModal({
  duration : 2500,
  placement : 'center',
  onTop : true
});

hintModal

<div class="hintModal">
  hover on me
  <div class="hintModal_container">
    text for hintModal
  </div>
</div>

dialogModal

$(content).dialogModal({});

titleModal

<div title="Title text" data-titleModal="init" data-placement="top">Text</div>

About

jquery plugin for showing tooltips, titles, modal dialogs and etc