2

我的 HTML 文档中有一个图像和一个按钮:-

<img src="logo.png" id="myphoto"/>
<button id="photo" onclick="animate_photo();">Slide off page</button>

然后我有一个 jQuery 函数来使页面的图像飞起来,并在单击按钮时更改按钮文本,如下所示:-

function animate_photo() {  

$('img#myphoto').addClass('animated bounceOutLeft');
$('button#photo').html('Slide back onto page');

}

到目前为止,一切都运行良好。请您告诉我如何改进该功能,以便如果再次单击按钮,照片会滑回原位。使照片滑回的课程是:-

$('img#myphoto').addClass('animated bounceInLeft');

我想要某种切换功能,这样如果重复单击按钮,照片会根据单击按钮时的位置在页面上/滑出页面。

谢谢

4

1 回答 1

2

这是一个例子:

function animate_photo() {  
  if($('img#myphoto').hasClass('bounceOutLeft')){
    $('img#myphoto').removeClass('bounceOutLeft').addClass('animated bounceInLeft');
    $('button#photo').html('Slide off page');
  }else{
    $('img#myphoto').removeClass('bounceInLeft').addClass('animated bounceOutLeft');
    $('button#photo').html('Slide back onto page');
  }
}

我没有测试它,所以我不保证它有效。

于 2013-09-19T12:36:40.623 回答