0
我有這種編碼,它只是簡單地交換圖像,當一個鏈接被點擊時,我也顯示了一些隱藏的HTML內容定位在圖像上。Jquery縮略圖彈出鏈接鼠標移動
<script>
if($.browser.msie && parseInt($.browser.version) <= 6){
$('#contentone, #contenttwo, #contentthree, #contentfour, .linksBackground').hide();
}
$('#contentone, #contenttwo, #contentthree, #contentfour').hide();
$("#linkone").click(function() {
$('#contenttwo, #contentthree, #contentfour').hide("1500");
$("#imageone").attr("src","Resources/Images/TEMP-homeOne.jpg");
$("#contentone").show("1500");
});
$("#linktwo").click(function() {
$('#contentone, #contentthree, #contentfour').hide("1500");
$("#imageone").attr("src","Resources/Images/TEMP-homeTwo.jpg");
$("#contenttwo").show("1500");
});
$("#linkthree").click(function() {
$('#contentone, #contenttwo, #contentfour').hide("1500");
$("#imageone").attr("src","Resources/Images/TEMP-homeThree.jpg");
$("#contentthree").show("1500");
});
$("#linkfour").click(function() {
$('#contentone, #contenttwo, #contentthree').hide("1500");
$("#imageone").attr("src","Resources/Images/TEMP-homeFour.jpg");
$("#contentfour").show("1500");
});
</script>
有誰知道我可以如何進一步修改這個來顯示一個小的縮略圖圖像,當用戶滾動鏈接?
我只需要一個提示,因爲我不知道該去哪裏......我可以通過鼠標懸停來實現嗎?
非常感謝!爲我清除它! – 2010-05-27 11:32:55