I really like the style of Facebook (or LinkedIn) Javascript popup dialogs – a thin semi-transparent shadow line around the dialog. It looks nice and from the usability point of view it has a purpose, as it is attracts user’s attention to the important component on the screen.
There are many examples of custom Javascript dialogs on the Internet that explain how to achieve this. While many solutions are really good, I wanted to make use of the dialog provided by jQuery UI library by default.
I have came up with a solution that works, but I don’t think it is the most elegant way to do it (CSS is not my strong side). The solution is quite simple, and pretty straight forward (I think
). The following are the final results as tested in FF3, IE8, Opera 10 and Chrome 10, please note the shadow line around the dialog:
First I defined a CSS class that’s going to have properties for the background shadow (the bg_dialog_modeless_mask.png is an 8×8 gray square image)
[css]
.dialog-mask {
-moz-border-radius:5px 5px 5px 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
background:url("../images/bg_dialog_modeless_mask.png") repeat scroll left top transparent;
}
[/css]
Somewhere on my HTML page, I defined a DIV that’s going to be the dialog holder:
[html]
<div id="popup-holder"></div>
[/html]
I added jQuery dialog init statement in my global JS file:
[javascript]
$(document).ready(function(){
$( ‘#popup-holder’ ).dialog({
autoOpen: false,
height: 350,
width: 530,
modal: true,
resizable: true,
draggable: false,
buttons: {
Cancel: function() {
$( this ).dialog( "close" );
$( ‘#dialog-wrapper’ ).remove();
}
},
close: function() {
$( ‘#dialog-wrapper’ ).remove();
},
open: function() {
wrapJqueryDialog($( this ));
},
resize: function() {
wrapJqueryDialog($( this ));
}
});
});
[/javascript]
The #dialog-wrapper is the ID of the DIV that holds the semi-transparent shadow which wraps the dialog. The wrapJqueryDialog function creates the shadow when dialog is opened, and handles the shadow resize when dialog is resized (it is also possible to add an event to drag the shadow when dialog has draggable option set to true).
Now the important part, the wrapJqueryDialog function:
[javascript]
function wrapJqueryDialog(dialogWidgetObj) {
//The width and height of the shadow line wrapping the dialog
var shadowWidth = 20;
//Lets remove the shadow holder to start clean
$( ‘#dialog-wrapper’ ).remove();
//Gets the current dialog widget
var widget = dialogWidgetObj.dialog( "widget" );
//Create the shadow holder DIV that has the background shadow CSS class
var dialogwrapper = $(‘<div id="dialog-wrapper" class="dialog-mask" />’);
//For IE, the holder must be appended to the body first before any manipulation.
$(‘body’).append(dialogwrapper);
//Lets copy default inline styles from the dialog widget to the shadow holder
dialogwrapper.attr("style", widget.attr("style"));
//Lets position the shadow holder before and above the dialog widget
dialogwrapper.css("top", parseInt(dialogwrapper.css("top")) – shadowWidth);
dialogwrapper.css("left", parseInt(dialogwrapper.css("left")) – shadowWidth);
dialogwrapper.css("position", "absolute");
//Make sure that the dialog widget is infront of surrounding shadow box and overlay (if there is one set)
widget.css("z-index", (parseInt(widget.css("z-index")) + 1));
//Add to the shadow width default padding value from the class ‘.ui-dialog’ and
//default border width from the class ‘.ui-widget-content’ (1px times two)
var finalShadowWidth = shadowWidth + parseInt(widget.css("padding-top")) + 2;
var widgetHeight = parseInt(widget.css("height"));
//Lets extend the shadow holder height
dialogwrapper.css("height", widgetHeight + (finalShadowWidth * 2));
var widgetWidth = parseInt(widget.css("width"));
//Lets extend the shadow holder width
dialogwrapper.css("width", widgetWidth + (finalShadowWidth * 2));
}
[/javascript]
That’s all when it comes to code (don’t forget to add to your HTML/JS code a dialog trigger, it can be a link or a button). I am really interested to hear your comments about it and suggestions. If you can suggest a better way of implementation – please do so, I am really keen to know





