This function will be triggerend onclick href link. But I want to give a
custom background image to the loader or wrapper. Somehow it's not in the
settings vocabular from nyromodal?
When I set this hardcoded in class/css file : div#nyroModalWrapper with
a specified background... everything is wokring allright but not through
this custom script...
Any tips on this one? Or is it something to add in the nyromodal
functionalities?
function popup(breedte,hoogte,topmarge,linkermarge,achtergrondplaatje,urllink){
var tm = topmarge;
var lm = linkermarge;
$.nyroModalManual({ css: {
loading: {
position: 'absolute',
backgroundimage:achtergrondplaatje,
opacity:0.50,
top: tm,
left: lm
},
wrapper: {
position: 'absolute',
backgroundimage:achtergrondplaatje,
top: tm,
left: lm
}
},
//bgColor:'#ffffff',
url: urllink,
forceType: 'iframe',
width: breedte,
height: hoogte,
});
}