Daybrush (Younkue Choi)

Results 714 comments of Daybrush (Younkue Choi)

@liu-xinhui guides' new version is released. guidesOffset prop is added. Thank you :)

@mhaddon Are you using "timeupdate" in your scene? If so, how about using "animate" instead of "timeupdate"? The animate event will fire whenever setTime is called.

@antonreshetov What does relative position mean? * `position: relative;`? * `left: 10px; top: 10px`?

@antonreshetov It still only gives a value in px. I'm sorry. ```js left = `${e.left / e.target.offsetWidth * 100}%`; top = `${e.top / e.target.offsetHeight * 100}%`; ```

@antonreshetov okay. I'll add relative propery next release.

@ryantando It must be blocked through an external key manager. InfiniteViewer does not block events separately. ```js document.body.addEventListener("keydown", e => { // move key e. preventDefault(); }); ```

@Szotski I will change the README. First of all, check out the demo in the following code sandbox. https://codesandbox.io/s/ngx-guides-demo-tdqjxo?file=/src/app/app.component.html

thanks. After using ffmpeg/wasm, I figured out that the rendering speed is dropping. I will add it in the next version so that you can use the ffmpeg binary as...