私は JS と Ajax のまったくの初心者です。fancybox と colorbox の両方を通過した後、「prev」と「next」のオプションを使用してスライドショーを実現できず、バナーの下の html 内で読み込もうとしている iframe 間を移動できません。 .
fancybox では高さを調整できませんでした (ただし、.fancybox-wrap の直下にある jquery.fancybox.css を !important などで編集するなど、さまざまなオプションを試しました)
cssと同じフォルダーの下にあるにもかかわらず、前と次のボタンを機能させることができませんでした
iframe コンテンツは、iframe 内に読み込むことができた (3 つの異なる).index html を含む panaromic フラッシュ コンテンツですが、複数の htmlfile をスライド ショーとして、またはスクロール prev & next オプションを使用して読み込もうとすると、機能しません。 . 以下は私の呼び出しです:
$(document).ready(function(){
$("a.iframe").fancybox({
'width' : 1000,
'height' : 500,
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe'
});
});
<!-- html code here -->
<a class="iframe" href="360/type1/example.html"><img src="images/type1.png" height="100" width="100"/></a>
<a class="iframe" href="360/type2/example.html"><img src="images/type2.png" height="100" width="100"/></a>
</body>