Masth0 / ScratchCard

ScratchCard is a js lib to simulated a scratchcard in browser with html5 and canvas.
MIT License
153 stars 49 forks source link

Callback not fired when using htmlBackground instead of imageBackgroundSrc #5

Closed dangrima90 closed 6 years ago

dangrima90 commented 6 years ago

I'm trying to use the htmlBackground property however the callback related to the percentToFinish doesn't seem to be executed.

I am using version 1.4.4, and I have replicated it here: https://stackblitz.com/edit/js-sh6mv3?file=index.js

Masth0 commented 6 years ago

Hello, i take a look asap. thx.

Masth0 commented 6 years ago

Your containerHeight is much taller than your content so if you 'scratch' just the image area the percent is smaller than your half of containerHeight. Just adjust the canvas size to your content size.

dangrima90 commented 6 years ago

Perfect that did it :) thanks a lot.