我有一个必须以下列方式运行的图像:当用户第一次单击它时,图像应该放大,再次单击图像时,它应该缩小。
请帮助弄清楚如何通过使用jquery单击图像来执行这两个操作?下面是我为放大图像而编写的代码。
$('.tab1').click(function()
{
$(".GraphHolder").hide("slow");
$("#top-button-container").hide("slow");
$(".print").append('<button type="button">PRINT</button>');
$(this).animate({width: "70%"}, 'slow');
});