fat / zoom.js

Medium's Image Zoom for jQuery
https://fat.github.io/zoom.js
MIT License
4.04k stars 332 forks source link

Fix to force cursor update after animation completes #21

Closed nielthiart closed 9 years ago

nielthiart commented 9 years ago

Hopefully this fixes fat/zoom.js#19

This fix changes the body's cursor style during animation, which forces the zoomed image's cursor style to apply.

Chromium has issues updating the cursor while the cursor is idle. See Chromium Issue 26723: Mouse cursor doesn't change when mouse-idling.

nielthiart commented 9 years ago

This fix works on Medium too, by adding

body.is-transitioningZoomOverlay {
    cursor: default;
}
fat commented 9 years ago

nice work, thanks!