ccjmk overlay

Cccjmk2/2/2022
but for what I wanted I think I needed to append it there so that I can overlay the whole screen
UUUnknown User2/2/2022
Message Not Public
Sign In & Join Server To View
Cccjmk2/2/2022
will give this a try after work! 🙂 now that you mention it, and pondering it in my mind a little, an app is rendered directly under the body anyway right ? so if I set it to w: 100% h: 100% it should cover the whole screen
UUUnknown User2/2/2022
2 Messages Not Public
Sign In & Join Server To View
Cccjmk2/2/2022
hmm yeah I think im safe. Im basically putting a div that opaques the whole screen with a little div in the middle for input; click anywhere and it will hide the whole thing, so its not a big deal probably
UUUnknown User2/2/2022
Message Not Public
Sign In & Join Server To View
Cccjmk2/2/2022
yup, basically this!
Cccjmk2/2/2022
weird aspect ratio 😛 but its because i have the console open aha
Cccjmk2/2/2022
I noticed a nice side effect and a bad side effect of turning this into an Application. It fades in (sexy), but scrolls up (horrible xD)
Cccjmk2/2/2022
any easy way to opt out of that, I don't see anything on the constructor options, I guess it's just overwriting that CSS ?
Cccjmk2/2/2022
Cccjmk2/2/2022
oh its barely noticeable on the video, damn 15 fps hahah
UUUnknown User2/2/2022
Message Not Public
Sign In & Join Server To View
Cccjmk2/2/2022
I am actually.. well, now at least! Before this was an Application, I had a big render()function that created the div added the event listeners, then used some show/hide() auxiliary functions to toggle it on and off. I moved the template to the construction options, all the event listeners to activateListeners() and kept the hide function, replaced my previous calls to show for render
Cccjmk2/2/2022
maybe I could keep my show/hide functions and insta-hide it as I render 🤔
UUUnknown User2/2/2022
2 Messages Not Public
Sign In & Join Server To View
Cccjmk2/3/2022
oh that makes sense