jaukia/zoomooz

Make button to zoom out rather than all outside area

Closed this issue · 1 comments

Hi there,

Does anyone know how would I create a button to zoom out once I am zoomed in? I don't want to zoom out when clicking on outside area, only when clicking on specific button.

Alrighty, I fugred it out myself using following code:

$('.reset').click(function () {
    $(this).closest('.description').fadeOut();
    $("body").zoomTo({
        targetsize: 0.5
    });
});

It basically serves the same purpose.