クリックしたときにのみ、私は問題を抱えている...jQueryの、fancybox働いていますが、この画像を二回
JS
$('#Contact').ready(function(){
$('a#Contact-Map').live('click',function(event){
event.preventDefault();
$('a#Contact-Map').fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'speedIn' : 600,
'speedOut' : 200,
'overlayShow' : true
});
});
});
HTML
<div class="Module-Frame" id="Contact">
<a id="Contact-Map" href="./Modules/Contact/Images/mapa_big.png">
<img src="./Modules/Contact/Images/mapa.png" alt=""/>
</a>
</div>
このHTMLコードを.LOADによってロードされます()jQuery関数です。作業だけますこの画像を二回クリックしてください...
ヘルプPLS :)負荷()FUNCと
JS
$(document).ready(function(){ $("#Menu").children().click(function(event){ $("#Content").hide().load('./Modules/'+ event.target.id.substr(5) +'/index.php', function() { $(this).fadeIn(); }); }); });
HTML
< html > < head > ... ... <body> ... <div id="Menu"> <a id="Menu-News" href="#" title="Aktualnosci"> aktualności | <a id="Menu-Aboutus" href="#" title="O nas"> o nas | <a id="Menu-Contact" href="#" title="Kontakt"> kontakt | <a id="Menu-Gallery" href="#" title="Galeria"> galeria </div> ... < div id=#content> ...
あなたは(全体の使用しているHTMLまたは少なくともあなたの負荷を含めることができます) 関数? – timothyclifford
ok ... code incuded –
Timothy、この問題を解決するにはいくつかのアイデアがありますか? –