我的 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');
我想要某种切换功能,这样如果重复单击按钮,照片会根据单击按钮时的位置在页面上/滑出页面。
谢谢