weizhenye / ASS

A lightweight JavaScript ASS subtitle renderer
https://ass.js.org
MIT License
534 stars 79 forks source link

Resize to the new size of object-fit #24

Open shababcreative opened 4 years ago

shababcreative commented 4 years ago

Doesn't resize to the new size when changing the object-fit css of the video: object-fit: fill: image

object-fit: cover: image

code:

    function setResize(mode) {
        vid.style.objectFit = mode;
        ass.resize();
    }