我正在建造一个游艇网站,在游艇页面上显示游艇的图像以及点击时在主图像上显示的更多照片。
它还有标签,因此用户可以在不离开页面的情况下看到游艇的一些虚拟游览(它就像是第二个图库)。
我的问题是,当我使用jQuery选项卡时,第二个选项卡(第二个库)(虚拟游览)不显示图像,滚动条不起作用。查看我看到的代码与jQuery .hide函数( $ j(“。tab_content”)。hide(); )有关,但如果我将其注释掉,则显示所有选项卡。
这是jQuery代码:
<script type="text/javascript">
// Initialize the plugin with no custom options
var $j = jQuery.noConflict();
$j(document).ready(function() {
//Default Action
$j(".tab_content").hide(); //Hide all content
$j("ul.tabs li:first").addClass("active").show(); //Activate first tab
$j(".tab_content:first").show(); //Show first tab content
//On Click Event
$j("ul.tabs li").click(function() {
$j("ul.tabs li").removeClass("active"); //Remove any "active" class
$j(this).addClass("active"); //Add "active" class to selected tab
$j(".tab_content").hide(); //Hide all tab content
var activeTab = $j(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$j(activeTab).fadeIn(); //Fade in the active content
return false;
});
$j("#scroller").simplyScroll({
speed: 25
});
$j("#scroller2").simplyScroll({
speed: 25
});
});
$j('.project').live('click',function(){
newImg = $j(this).attr('rel');
$j('img.projectImg').attr('src', newImg);
hideLoading();
});
$j('.vrtour').live('click',function(){
newSwf = $j(this).attr('rel');
var newObjElement = '<object style="width:681px;height:511px;"><param name="movie" value="'+newSwf+'"><embed src="'+newSwf+'" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="681" height="511"></object>';
$j('#Swf').html(newObjElement);
hideLoading();
});
</script>
这是HTML:
<ul class="tabs">
<li><a href="#tab1">PHOTOS</a></li>
<li><a href="#tab2">VIRTUAL TOUR</a></li>
</ul>
<div class="tab_container">
<div id="tab1" class="tab_content">
<div id="photosItem">
<!-- Item Image -->
<div class="itemImageBlock" id="imageBox">
<span class="itemImage">
<img src="184b7cb84d7b456c96a0bdfbbeaa5f14_L.jpg" alt=" Posillipo 80 1997" style="width:681px; height:511px;" class="projectImg" />
</span>
</div>
<div class="clr"></div>
</div>
<!-- Item image gallery -->
<a name="itemImageGalleryAnchor" id="itemImageGalleryAnchor"></a>
<div class="itemImageGallery">
<div id="gallery">
<ul id="scroller">
<li><img rel="IMG_3104.jpg" src="jwsigpro_cache_8d00638fe2img_3104.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
<li><img rel="IMG_3109.jpg" src="jwsigpro_cache_8d00638fe2img_3109.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
<li><img rel="IMG_3133.jpg" src="jwsigpro_cache_8d00638fe2img_3133.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
<li><img rel="IMG_3136.jpg" src="jwsigpro_cache_8d00638fe2img_3136.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
<li><img rel="IMG_3156.jpg" src="jwsigpro_cache_8d00638fe2img_3156.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
<li><img rel="IMG_3159.jpg" src="jwsigpro_cache_8d00638fe2img_3159.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
<li><img rel="IMG_3164.jpg" src="jwsigpro_cache_8d00638fe2img_3164.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
<li><img rel="IMG_3169.jpg" src="jwsigpro_cache_8d00638fe2img_3169.jpg" alt="Click to open image!" title="Click to open image!" style="width:136px;height:92px;cursor:pointer" class="project" /></li>
</ul>
</div>
</div>
</div>
</div>
<div id="tab2" class="tab_content">
<div id="photosItem">
<div class="itemImageBlock" id="imageBox">
<span class="itemImage">
<div id="Swf">
<object width="681" height="511">
<param name="movie" value="Ferretti_165_main_saloon.swf">
<embed type="application/x-shockwave-flash" src="Ferretti_165_main_saloon.swf" width="681" height="511" class="projectSwf"></embed>
</object>
</div>
</span>
</div>
<div class="clr"></div>
<div class="itemImageGallery">
<div id="gallery">
<ul id="scroller2">
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="example.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="example.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
<li><img rel="Ferretti_165_main_saloon.swf" src="deck.jpg" alt="Click to open 360!" title="Click to open 360!" style="width:136px;height:92px;cursor:pointer" class="vrtour" /></li>
</ul>
</div>
</div>
</div>
</div>
如果你想看到它,那么这是演示页面:
如果有人能提供帮助,我将不胜感激。
谢谢!
答案 0 :(得分:1)
问题是#scroller2的宽度。
我不知道这个插件,但我的猜测是它添加了所有<li>
(此处为136px)的宽度来设置<ul>
的宽度。
对于第一个标签,宽度很好:8拇指* 136像素= 1088像素。
对于第二个标签,宽度设置为0px,因此无效。
我想说,simplyscroll尝试获取<li>
的外部宽度,然后失败,然后隐藏它们。
所以也许尝试在调用simplyscroll后隐藏选项卡。
即:
移动
$j("#scroller2").simplyScroll({
speed: 25
});
到剧本的开头。
但是,修复它的最佳方法是编辑插件。