如何结合两个jQuery动画动作?

时间:2010-11-21 21:36:17

标签: jquery animation

当我将鼠标悬停在div上时,它将显示图像标题,然后日期将移动10px。在我的代码中,它只显示标题,但不移动日期部分。如何使两个jquery动画动作都运行良好? Thax。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> </title>
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(function() {
   $('.image').each(function() {
        $(this).hover(
             function() {
                 $('.title', this).animate({ opacity: 1 })
             },
             function() {
                 $('.title', this).stop().animate({ opacity: 0 });
             },
         function() {
                 $('.date', this).animate({ top: '+=10' })
             },
             function() {
                 $('.date', this).stop().animate({ top: '-=10' });
             })
         });
   });
</script>
</head>
<body>
<div class="image"><img src="img1.jpg"><p class="title">test1</p><p class="date">2010</p></div>
</body>
</html> 

1 个答案:

答案 0 :(得分:1)

$(function() {
   $('.image').each(function() {
        $(this).hover(
             function() {
                 $('.title', this).stop(1,1).animate({ opacity: 1 });
                 $('.date', this).stop(1,1).animate({ top: '+=10' });
             },
             function() {
                 $('.title', this).stop(1,1).animate({ opacity: 0 });
                 $('.date', this).stop(1,1).animate({ top: '-=10' });
             }
        );
   });
});