-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessibility #37
Comments
It does not replicate DOM it replaces it visually, but DOM is at place and is clickable and selectable. You do not see selection highlight (which will be fixed), but you still can select and copy/paste. So lets keep this issue and close when selection highlight will be imlemented |
True, there's no system outline on focusable elements. |
I know a simple thing to hide the DOM elements by using javascript old way. It works like this: page loads>DOM is taking it's time to generate>Canvas already made and should know whats inside to replace>JavaScript hides the DOM Elements if you did this on a onload page it should work as well. Down-side: you'll have to hide all the packs you make in a different tag. JS old way: we are used of using *.style.display="none"; for hidding elements that are not needed at moments that tou don't use them. |
I'm wondering if this is actually to be used in prod? Do you consider to work on accessibility for this? Replicating DOM inside of
canvas
tag seems somewhat a good practice, better than nothing.This is related to similar issue on react-canvas.
The text was updated successfully, but these errors were encountered: