-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
Create multiple windows animation demo #25
Comments
You can get window location in JavaScript: function geometry() {
const left = window.screenX;
const top = window.screenY;
const width = window.innerWidth;
const height = window.innerHeight;
return {
top,
left,
width,
height
};
} |
There is a |
jcubic
added a commit
that referenced
this issue
Feb 13, 2022
jcubic
added a commit
that referenced
this issue
Feb 13, 2022
This can be a starting point Multi-Canvas demo. Now what's left is to use this as a base and create a page that will have a full-screen canvas and draw the circle on multiple pages. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be cool and most likely possible to create something like a multi-desktop monitor setup but with browser windows that are displayed next to each other.
The text was updated successfully, but these errors were encountered: