我使用這段代碼來改變不透明度,當用戶打開和關閉一張圖片不幸的是,當用戶點擊圖片時,不透明度不會停留在1.任何人都有答案?幫助jquery animate()
$(document).ready(function(){
$('img#slide').animate({"opacity" : .7})
$('img#slide').hover(function(){
$(this).stop().animate({"opacity" : 1})
}, function(){
$(this).stop().animate({"opacity" : .7})
});
$('img#slide').click(function(){
$(this).animate({"opacity" : 1});
});
});
其中重要的是,在問題中包含代碼,以便未來的搜索者可以從中受益,即使在pastebin刪除了粘貼之後也是如此。我爲你解決了這個問題。 – 2010-06-17 12:49:58