
Untitled
By: a guest on
Aug 12th, 2012 | syntax:
None | size: 0.92 KB | hits: 7 | expires: Never
var UIXButtonBar =
{
close: function()
{
$("div#UIXButtonBar").animate({ width: "55px" }).animate({ opacity: 0.5, height: "0%" });
},
open: function()
{
$("div#UIXButtonBar").animate({ opacity: 1, height: "73px", width: "55px" }).animate({ opacity: 1, width: "415px" });
},
init: function()
{
$("div.UIXButtonBarButton").mouseover( function()
{
$(this).css({
"backgroundColor": "transparent",
"backgroundImage": "url(resources/bg.png)",
"backgroundRepeat": "repeat",
"border-bottom": "solid 2px #e7e7e7"
});
});
$("div.UIXButtonBarButton").mouseout( function()
{
$(this).css({
"backgroundImage": "none",
"border-bottom": "solid 2px black"
});
});
$("div.UIXButtonBarButton a").click( function(event)
{
event.preventDefault();
$("div#UIXButtonBar").animate({ width: "55px" }).animate({ opacity: 0.5, height: "0%" });
});
}
};