日期:2014-05-16 浏览次数:20481 次
$(document).ready(function(){
var a=true
$('p').mousemove(function(event){
if a=true {
a=false;
$(event.target).fadeOut(200) ;
$(event.target).fadeIn(100) ;
a=true;
}
});
});
$(document).ready( function() {
$('p').mousemove( function() {
if (!$(this).is(":animated")) $(this).fadeOut(200, function() { $(this).fadeIn(100); });
});
});