鼠标经过图片边框炫酷动画

来源:https://www.sucaihuo.com/js/1612.html 2017-04-01 22:22浏览(486) 收藏

这是一款鼠标经过图片代动画特效代码,炫酷界面炫酷动画,给页面带来一种互动感。
鼠标经过图片边框炫酷动画
分类:其它特效 > 动画效果 难易:初级
查看演示 下载资源 下载积分: 20 积分
关注公众号,免费赠送安装视频教程、环境和学习视频,后面会不断更新。
$(".box li").mouseenter(function(){
	$(this).children("p").animate({
		"height":"40px",
	},500);
	$(this).children("div:even").animate({
		"width":"100%",
	},500).css("background","#02b3bf");
	$(this).children("div:odd").animate({
		"height":"100%",
	},500).css("background","#02b3bf");
});

$(".box li").mouseleave(function(){
	$(this).children("p").animate({
		"height":"0px"
	});
	$(this).children("div:even").animate({
		"width":"0%",
	},500).css("background","#02b3bf");
	$(this).children("div:odd").animate({
		"height":"0%",
	},500).css("background","#02b3bf");

});
评论0
头像

系统已开启自动识别垃圾评论机制,识别到的自动封号,下载出错或者资源有问题请联系全栈客服QQ 1915635791

1 2