Jquery鼠标hover移入移出事件

鼠标放在元素上移入移出。

$(function() {
		$(".top_weixin").hover(function() {
			$(".topWeixinPic").fadeIn(300);
		}, function() {
			$(".topWeixinPic").fadeOut(300);
		});
	});

猜你喜欢

转载自blog.csdn.net/u014012244/article/details/80968283
今日推荐