<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="js/jquery-1.12.4.min.js">
</script>
<style type="text/css">
body{
background: black;
}
</style>
</head>
<body>
<img src="img/03.jpg" alt="03" title="3号" />
<img src="img/04.jpg" alt="04" title="4号"/>
<img src="img/05.jpg" alt="05" title="5号"/>
</body>
<script type="text/javascript">
$("img").hover(function(){
$(this).siblings().stop().animate({
"opacity":"0.3"
},1000)
},function(){
$(this).siblings().stop().animate({
"opacity":"1"
},1000)
})
</script>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="U