<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<link href="css.css" rel="stylesheet">
<script src="../../jquery/jquery-2.1.4.min.js"></script>
<script src="js.js"></script>
</head>
<body>
<div class="div">
<img src="img/2.jpg">
<img src="img/4.jpg">
<img src="img/3.jpg">
</div>
</body>
</html>
<!--下面是jQuery-->
$(function(){
$(".div img").mousemove(function(){
$(this).animate({width:"300"},1000).siblings().animate({width:"225"},1000)
})
.mouseout(function(){
$(this).css({width:"250"})
})
})
stone310
相关分类