CSS Cursor on graphic symbol
I have an CSS working on several elements. I now want to add a 'move' cursor to a graphic symbol. It's not working.
#ConcaveSphereLens {
cursor:move;
}
The symbol instance is correctly named.
I have an CSS working on several elements. I now want to add a 'move' cursor to a graphic symbol. It's not working.
#ConcaveSphereLens {
cursor:move;
}
The symbol instance is correctly named.
Graphic symbols are canvas/CreateJS based objects. It means they live inside of a canvas element (e.g.:<canvas id="myCanvas" width="200" height="100">). So they cannot be modified by CSS.
Components are DOM elements and live outside the canvas. And that's why they can be modified using CSS.
Regards,
JC
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.