What is the difference between Vector elements and the vector files from Adobe illustrator

Hello,

I found Vector elements need more CPU usage, and it is easily cause safari crash on IPHONE, so, what is the difference between Vector elements and the vector files from Adobe illustrator?

Any tricks to use Vector elements for MOBible project please?

Thanks

Under the hood both are plain SVG. The one from Hype is managed and the runtime updates it when you animated path data. If you only move the entire container they behave the same.

Adobe illustrator can produce more complex shapes and use/produce a much bigger scope of the SVG markup vs. Hype that can update its very simple SVG path subset.

Hope that helps.

SVG files can be optimized for size and presumably also CPU usage. More info here: https://petercollingridge.appspot.com/svg-optimiser

My guess is that SVG files from Illustrator are less CPU intensive.

The intensity can arise from the file itself meaning the complexity of the path data and the CPU needed in redraws when moved. Hence, Illustrator can be much more intense as you can create much more complex layouts than in the Hype app. On the other hand Hype just doesn't have the tools to create multilayered SVG's yet. Each Vector Object is rendered into a single SVG file and the composite is done in the browser render layer. Adobe illustrator packages everything into one single SVG container and hence the composite is done in the SVG module of the browser. My hunch is also that the later is faster.

Then there is the Hype animation part that actually modifies the path data. Not sure how efficient that is done and that is a whole suit of speed tests on its own vs. other libraries and approaches to animate SVG (CSS-Animations etc.)

If you are experiencing a crash in using vector shapes, can you please post a zip of your .hype document here or send it to support@tumult.com? It would also be great to know which iOS device you are using and any steps required to reproduce the crash.

Hi Jonathan,

I already adjust the Vector element to be smaller ones, and it seems much bette nowr, anyway here is my hype document if you like to track any potential issues:
baoingredient.hype.zip (515.3 KB)

and here is the url at our site:

https://www.lovcour.com/baomachenizm/baoingredient/

I test it on iPhone 5, with IOS 12.3.1

if set the vector elements to be large ones, and scroll the page up and down, mostly it will be reproduced.

Thx

To clarify, did you have mostly-identical SVGs from illustrator at the same size that did not create a crash at the same size as vector shapes from Hype?

Hi @jonathan,

Great question.

To be frank, I use SVG mask from illustrator, but Usually only one in HYPE document, not so much svg files in one Hype project file . like the phoenix mask at this page:
https://www.lovcour.com/homenew/water_9a/

The color wheel is also created by Hype SVG elements, sometime, it will cause crash.

Since SVG element is a new function, and it is really a big GUN for me, and it is so convenient for us to create variable elements, so I use several SVG elements in one hype only RECENTLY.

For comparison, I create add several SVGs from illustrator into HYPE only for mobile mode, but use Hype SVGs element for PC mode, it seems quite stable:
Please check at this page if you like:

https://www.lovcour.com/bu_mechanizm/bu_ingredient/

Or you might like to check the document if you want track something.

bu_ingredient2.hype.zip (740.4 KB)

By the way, I found the svg element could be interpreted as DIV code when I try to copy one SVG element into Sketch or Adobe illustrator, Like this way:

<div hypeattributetop="113.000px" hypeattributeleft="0.000px" style="pointer-events: auto; opacity: 0.5684829905; transform: translateX(0px) translateY(113px) rotateY(0deg); height: 575px; z-index: 4; width: 1380px; overflow: visible;"><svg width="100%" height="100%" style="position:absolute" version="1.1" xmlns="http://www.w3.org/2000/svg"> <defs> <linearGradient id="313_hype_gradient" gradientUnits="userSpaceOnUse" x1="0%" y1="0%" x2="100%" y2="0%" gradientTransform="rotate(143 690 287.5)"> <stop offset="0%" stop-color="#00E2FF" stop-opacity="0.129"></stop> <stop offset="100%" stop-color="#00A8FF" stop-opacity="0.277"></stop> </linearGradient> <pattern id="313_hype_pattern" patternUnits="objectBoundingBox" width="1" height="1" viewBox="0 0 1 1" preserveAspectRatio="xMidYMid slice"> <image xlink:href="" x="0" y="0" width="1" height="1" preserveAspectRatio="xMidYMid slice"></image> </pattern> </defs> <filter id="313_hype_filter"><feOffset></feOffset></filter> <path id="313_path" fill="url(#313_hype_gradient)" filter="none" stroke="#D8DDE4" stroke-width="0" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4" fill-rule="nonzero" d="M0.00 53.91 C 0.00 53.91, 87.95 -9.38, 236.83 1.23 C 360.91 10.06, 531.46 93.11, 689.81 93.11 C 831.19 93.11, 962.15 61.79, 1080.70 53.91 C 1248.40 42.76, 1379.61 53.91, 1379.61 53.91 L 1379.61 482.71 C 1379.61 482.71, 1328.10 563.82, 1252.00 545.72 C 1206.58 534.92, 1157.87 426.30, 1091.00 416.88 C 969.70 399.79, 796.45 574.00, 653.00 574.00 C 575.68 574.00, 505.82 389.04, 433.00 431.55 C 372.31 466.97, 317.34 551.06, 265.00 559.34 C 108.73 584.04, 0.00 482.71, 0.00 482.71 L 0.00 53.91 Z"></path></svg></div>

although I do not know what does that mean, but it is really interesting.

Thanks, have a nice day.

Thanks for sending those my way.

Ultimately it is difficult to say specifically what may cause a crash without an apples-to-apples comparison, but fundamentally these crashes are generally related to the browser running out of memory. There are many different reasons why this could be the case, but I'd recommend for you the best item you can do is uncheck "Use WebKit graphics acceleration" for your documents. They are typically quite big (as in dimensions) and using the webkit graphics acceleration method will eat up significantly more memory resources (as there are GPU duplicates). Unless there's an animation that specifically performs poorly for you'd, I'd have that be a rule of thumb.

Correct, when you copy a Hype element and paste it into a text context, it will paste the inner HTML of the div. I originally just had this for debugging purposes for myself, but found others may get some value out of it. If you look inside, you'll see the <svg> element itself, which is what Hype generates. This can be extracted and used for all kinds of purposes, like putting in a graphics tool.

Thanks.

Actually, I do not know what it is used for, is there any potential effect to any function please?

This box essentially adds a rotateY(0deg) transformation to all elements, turning them into 3D objects. As such, WebKit-based browsers currently will use GPU-based compositing. This can result in better performance for animations, but can come at the expense of using more memory.

Max is there anything that can convert illustrator documents to a vector shape that hype can then animate?

Not really. One could program a converter, though. I’d like to see SVG support one day by allowing not full access but some custom properties function to hook up arbitrary attributes or styles.

2 Likes