MaverickGeek Posted August 18, 2017 Share Posted August 18, 2017 #renderCanvas { width: 100%; height: 100%; position: absolute; } #overlayUI { width: 100%; height: 100%; z-index:2; position: absolute; } <div id = "overlayUI"></div> <canvas id = "renderCanvas"></canvas> Using this The UI is blocking input on Canvas! How to use the UI without blocking events! Quote Link to comment Share on other sites More sharing options...
MaverickGeek Posted August 18, 2017 Author Share Posted August 18, 2017 #renderCanvas { width: 100%; height: 100%; } #overlayUI { position: absolute; } Solved! LOL! Wingnut 1 Quote Link to comment Share on other sites More sharing options...
Pryme8 Posted August 18, 2017 Share Posted August 18, 2017 #overlayUI { pointer-events:none; position: absolute; } #overlayUI *{ pointer-events:all; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.