如何实现当鼠标移到某个DIV上,该DIV自动放大120%,移开自动缩回100%?
如题,用JS、JQ都可以,只知道图片可以实现这个效果,那DIV可以实现吗?请高手不吝赐教,谢谢!...
如题,用JS、JQ都可以,只知道图片可以实现这个效果,那DIV可以实现吗?请高手不吝赐教,谢谢!
展开
2个回答
展开全部
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$("#test").mouseover(function(){
$(this).animate({width:"120%"},500);
}).mouseout(function(){
$(this).animate({width:"100%"},500);
});
});
</script>
</head>
<body>
<div style="width:100px;height:100px;">
<div id="test" style="width:100px;height:100px;border:1px solid blue;"></div>
</div>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$("#test").mouseover(function(){
$(this).animate({width:"120%"},500);
}).mouseout(function(){
$(this).animate({width:"100%"},500);
});
});
</script>
</head>
<body>
<div style="width:100px;height:100px;">
<div id="test" style="width:100px;height:100px;border:1px solid blue;"></div>
</div>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询