Hi,
SVG
Seeking feedback on possible application of dojox.gfx
- Login or register to post comments
- Read more
- Unsubscribe post
dojox.gfx + SVG Fonts = custom typography.
Coming in the Dojo 1.2 release—the ability to use custom typography!
GFX: Creating surface from existing SVG markup
Is it possible to create a surface from an existing SVG markup received via AJAX from the server? I have no problem creating and initializing SVG document via .load() like it is described in http://www.quirksmode.org/dom/importxml.html, though the problem is to somehow display this document in client's browser. Ideally, on IE, that document should be interpreted as VML.
GSoC Idea: dojo + svg
My name is Artem Kaznatcheev, I am finishing my second year at McGill University in a joint honours program in physics and computer science. I have an idea for a potential GSoC project that combines the dojo toolkit with SVG, but I am not sure if dojo is interested in this sort of work.
image drawing with dojo gfx
Hello to all,
canvas tag supports image slicing, toslice parts of a source image and draw them to the canvas.
drawImage(image, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight)
Dojo SVG and VML seems to not support image slicing. Is there something to do this?
Thank you
Bin
SVG
Is it possible to dynamically move a svg shape e.g. rectangle to another position. I have tried the fx method with no luck...
dojo.fx.chain([
dojox.fx.slideBy({ node: group.getNode(), top:100, left:100, duration:400 }),
dojox.fx.slideBy({ node: group.getNode(), top:50, left:-50, duration:400 })
]).play();
but this does not work, also i made the group movable new dojox.gfx.Moveable(group); but this did not make a difference.
Anyone have any ideas?
Future of SVG,VML,GFX?
I'd love to use GFX&GFX3D for serious cross-browser development. But, since GFX renders in VML in IE, I'm concerned about microsoft's future plan for their browser. What if IE8 breaks VML even further without still providing native support for SVG? In that case, any web site design based on GFX will be not viewable on IE8.
Does someone know microsoft's plans concerning this topic or point to a resource where to get appropriate infos on how probable it is that SVG or VML will be supported in IE8?
Fullscreen Scalable GFX & GFX3D
Hi,
everyone. Congratulations on 1.0! It's awesome!
I want to create a fully scalable GFX/GFX3D site. Until now GFX scales perfectly if I define a surface as follows :
dojoGFX_Main_surface=dojox.gfx.createSurface(dojo.byId("dojoGFX_Main"),"100%","100%");
(
)
However, the base-class for all my GFXs has to set diffrent transformation factors depending on whether the browser is IE or another one. This is the code of the class :
