我正在尝试做一个像淡入一样的google.com(我想淡出文本)
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$("html").mousemove(function () {
$("p").fadeOut("slow");
});
});
</script>
使用该代码,尽管我没有移动鼠标,但我的淡出功能会自动激活。发生在所有浏览器中。有小费吗?