我有一個使用導航列表切換出的幻燈片圖像的jQuery的幻燈片。它是如何工作的,當你將鼠標懸停在導航列表上時,它將突出顯示('.active')和關聯的圖像切換到該列表。導航列表中有鏈接,也可以點擊鏈接到不同的頁面。jQuery的懸停功能,通過點擊平板電腦上的
我需要這在平板電腦上運行,這樣當人水龍頭的導航列表中,它被激活,則圖像幻燈片切換,然後如果你再次點擊它遵循通過該鏈接。現在發生的事情是,只要你點擊它,它就會變得活躍並點擊。
這裏是jQuery的
$(".main_image .desc").show(); //Show Banner
$(".main_image .block").animate({ opacity: 0.8 }, 1); //Set Opacity
//Click and Hover events for thumbnail list
$(".image_thumb ul li:first").addClass('active');
$(".image_thumb ul li").hover(function(e){
//Set Variables
e.preventDefault();
var imgAlt = $(this).find('img').attr("alt"); //Get Alt Tag of Image
var imgTitle = $(this).find('a.imgloc').attr("href"); //Get Main Image URL
var imgDesc = $(this).find('.block').html(); //Get HTML of block
var imgDescHeight = $(".main_image").find('.block').height(); //Calculate height of block
if ($(this).is(".active")) { //If it's already active, then...
return false; // Don't click through
} else {
//Animate the Teaser
$(".main_image .block").animate({ opacity: 0, marginBottom: -imgDescHeight }, 250, function() {
$(".main_image .block").html(imgDesc).animate({ opacity: 0.8, marginBottom: "0" }, 250);
$(".main_image img").attr({ src: imgTitle , alt: imgAlt});
});
}
$(".image_thumb ul li").removeClass('active'); //Remove class of 'active' on all lists
$(this).addClass('active'); //add class of 'active' on this list only
return false;
});
下面是爲導航列表
<div class="image_thumb">
<ul>
<li id="one">
<h2><a href="styleguide.html">Text Text Text</a></h2>
<p><a href="styleguide.html">Text Text Text</a></p>
<a class="imgloc" href="content/images/home/01.jpg"></a>
<div class="block">
<p>Text Text Text</p>
</div>
</li>
</ul>
</div>
這裏的HTML是它是如何工作的例子:ocgoodwill.org
如果有人可以幫助這將是大!
- 編輯 -
我也想補充一點,如果用戶已經聘請到的要素之一,然後敲擊不同的一個,第一個需要被複位,所以,如果他們點擊返回在它上面,它不會自動點擊。
所以c_kick和bergie3000都是對的。但只有其中一個人可以獲得綠色支票獎品! – jkilp 2012-07-12 23:22:03