2 つの画像があります。それらをクリックすると、それぞれの #DIV が開きます。そして、それはうまくいきます。カラーボックスjQueryプラグインを使用しています。
しかし、2 つのリンク ajNext と ajPrev も追加しました。
それらを使用して、次または前のインライン DIV を開きたいです。ギャラリーの次の前の機能のような、グループ化された DIV として開くことは可能ですか。親切に私を助けてください:)
$(document).ready(function(){
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
$(".inline").colorbox({inline:true, width:"1020px", height: "560px"});
$('#ajNext').live('click', function(){
$.fn.colorbox.next();
});
});
そして私のHTML:
<li><a class="inline" href="#profile1"><img src="car1.jpg"></a></li>
<li><a class="inline" href="#profile2"><img src="car2.jpg"></a></li>
<div id="inline_profiles"'>
<div id="profile1" class="profilex">
<img src="images/kala-mela/car1_1.jpg">
<p><strong>Prasanna R. Gogilwar. 111</strong></p>
<p>111 Prasanna loves birds and his favourite is the Hornbill. He mentioned that the side lights of the Nano bear a striking resemblance to the bird and the thought of owning a Nano with his design on it would be extremely exciting. He would drive is everywhere so that people get a chance to admire his work.</p>
<a id="ajPrev"></a>
<a id="ajNext"></a>
</div>
<div id="profile2" class="profilex">
<img src="images/kala-mela/car1_1.jpg">
<p><strong>Prasanna R. Gogilwar. 2222</strong></p>
<p>222 Prasanna loves birds and his favourite is the Hornbill. He mentioned that the side lights of the Nano bear a striking resemblance to the bird and the thought of owning a Nano with his design on it would be extremely exciting. He would drive is everywhere so that people get a chance to admire his work.</p>
<a id="ajPrev"></a>
<a id="ajNext"></a>
</div>
</div>