Karottenkopf51
Grünschnabel
Servus,
ich möchte Inline-Content wie bei dem ersten Eintrag von 'Various examples' auf http://fancybox.net/home darstellen.
Fancybox:
Mein Inline-Content:
Mein Link:
CSS:
Jedoch öffnet sich Fancybox nicht. Was mache ich falsch? Wie man sieht habe ich die Inline-Elemente in einem übergeordneten Element, welchem ich display:none gegeben habe.
Ich weiß echt nicht weiter.
Gruß
ich möchte Inline-Content wie bei dem ersten Eintrag von 'Various examples' auf http://fancybox.net/home darstellen.
Fancybox:
Code:
$(document).ready(function() {
$(".fancy_gallery").fancybox({ 'type' : 'image' });
$(".fancy_inline").fancybox({
'titlePosition' : 'inside',
'transitionIn' : 'none',
'transitionOut' : 'none',
'autoDimensions' : 'true'
});
});
Mein Inline-Content:
Code:
<div style="display:none;">
<div id="showInformationContent0"><?php echo $informationArray[0]['content'] ?></div>
<div id="showInformationContent1"><?php echo $informationArray[1]['content'] ?></div>
</div>
Mein Link:
Code:
<a class="fancy_inline" href="#showInformationContent1" title="<?php echo $informationArray[1]['headline'] ?>">...</a>
CSS:
Code:
#showInformationContent0 {
width:500px;
height:500px;
background-color:white;
overflow:auto;
}
#showInformationContent1 {
width:500px;
height:500px;
background-color:white;
overflow:auto;
}
Jedoch öffnet sich Fancybox nicht. Was mache ich falsch? Wie man sieht habe ich die Inline-Elemente in einem übergeordneten Element, welchem ich display:none gegeben habe.
Ich weiß echt nicht weiter.
Gruß