You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This works great! But if I change the size of the window, or rotate (landscape to/from portrait orientation), the cursor and magnifier are offset.
I added a $(window).resize function: <script> $(window).resize(function() { // Initiate magnification powers $('.zoom').init(); $('.zoom').magnify(); }); </script>
which works fairly well, but often on mousemove/touchmove, the magnifier "blinks" as it moves (visible then invisible then visible), and it seems more "jerky" on an iPad when this happens.
The text was updated successfully, but these errors were encountered:
This works great! But if I change the size of the window, or rotate (landscape to/from portrait orientation), the cursor and magnifier are offset.
I added a $(window).resize function:
<script>
$(window).resize(function() {
// Initiate magnification powers
$('.zoom').init();
$('.zoom').magnify();
});
</script>
which works fairly well, but often on mousemove/touchmove, the magnifier "blinks" as it moves (visible then invisible then visible), and it seems more "jerky" on an iPad when this happens.
The text was updated successfully, but these errors were encountered: