我試圖做一個google.com類似淡入(CEPT我想淡出文本)jQuery的鼠標移動()獲取無鼠標移動
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$("html").mousemove(function() {
$("p").fadeOut("slow");
});
});
</script>
與該代碼被激活,我淡出自動獲得雖然我沒有移動鼠標,但激活了。在所有瀏覽器中都會發生。有小費嗎?
無法在Chrome 5,FF 3.6中重現。 – 2010-06-27 23:03:15
這裏是一個例子http://www.ximnet.com.my/jquery/mousemove.htm – thegreyspot 2010-06-28 00:13:30