Skip to content
Snippets Groups Projects
Commit cee468ba authored by sermigu's avatar sermigu
Browse files

Subir nuevo archivo

parent f129ef45
Branches
No related tags found
No related merge requests found
$(function()
{
$("#infoBox")
.css(
{
"background":"rgba(255,255,255,0.5)"
})
.dialog({ autoOpen: false,
show: { effect: 'fade', duration: 500 },
hide: { effect: 'fade', duration: 500 }
});
$("#infoButton")
.text("") // sets text to empty
.css(
{ "z-index":"2",
"background":"rgba(0,0,0,0)", "opacity":"0.9",
"position":"absolute", "top":"4px", "left":"4px"
}) // adds CSS
.append("<img width='32' height='32' src='./fotos/icon-info.png'/>")
.button()
.click(
function()
{
$("#infoBox").dialog("open");
});
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment