Jump to content
Search Community

dalisoft

Members
  • Posts

    60
  • Joined

  • Last visited

Everything posted by dalisoft

  1. 1. Client contacts me 2. I create for him app, or mobile app or etc with GSAP 3. He pay for me once 4. If he want to sell to marketplace, he should buy license from GSAP as it's not anymore my work There requires license for ME for GSAP?
  2. 1. Can i allowed to use own plug-in for ONE-TIME programm selling without buying GSAP license? 2. Can i use GSAP TweenMax for ONE-TIME programm selling without buying license?
  3. Hi @GreenSock I think about something, but without affecting to your bussiness model, can i do that? I explain this below: Let's say, i creating web-sites, mobile apps, own personal websites with one-off sold, as i know one-off sold doesn't require GSAP license. If i'm create plug-ins (GitHub repo, No-License, without license no-one allowed to use app) for GSAP for myself like morphSVG, drawSVG (i sure your plug-ins great, but my budget not good to be member of Club, thanks to GSAP anyway), i not required to buy license? I can use GSAP for free, usually i'm use TweenMax, TimelineMax. Thanks for reply.
  4. Maybe bodymovin helps you? It can export from After Effects to HTML5 SVG, Canvas or Hybrid. Here link: https://github.com/bodymovin/bodymovin I hope this helps
  5. I am interesting of how this issue slowing down your site? Is this really slow down responsiveness of page? I using GSAP and i knew about Chrome DevTools just few month ago and it helped me a lot, but i again remember, REAL performance is differs from TESTS and Memory usage. If you deeply care about performance, i recommend you "chrome://tracing/" as some peoples told how it helped him. If you have issues about keeping element that removed, i recommend to use some below code. EDIT: Micro-optimization doesn't let you what you want. So you should not care about micro-optimization var target = document.getElementById('#myTarget'); // 1. getById is faster than others var varsMap = new Set(); // 2. "Set" creates less memory than objects var varsMap2 = new Set(); // #2 varsMap.x = 0; varsMap2.x = 200; varsMap2.onUpdate = function () { // your update here // like target.style.left = varsMap.x + "px"; }; varsMap2.onComplete = function () { target = null; // garbage it varsMap = null; // its too varsMap2 = null // its too // when onComplete is called then tween is removed from tweens list // target nowhere stores in TweenMax } TweenMax.to(varsMap, 2, varsMap2);
  6. Do any animation. About optimization cares GSAP. I always do that way and no issues since 2011.
  7. I think rendering two divs will be smoother than three div. if you put 2 div inside one div. browser anyway renders 3div. I am just fan not a developer. Test yourself for understand how to improve code.
  8. Hi. I not advanced developer nor developer. I am just fan of JS. I know and use GSAP since 2011 and always GSAP keeps boss place of animation engine and there not only Jack. There much of developers worked to be GSAP best of engines of animation. As i know heap memory, Garbage collection cannot be managed. No one browser guarantes you best performance even if you did garbaged all of objects and etc. There my mind as fan. 1. Real performance differs from tests. 2. Make 100arrays inside loop and make 1arrays outside loop. This sounds like second test should be 100times faster. You get less memory heap, but for just 50 DOM elements testing animation with repeat you can test, you get just 3-5fps performance improvements. 3. Dont trust everything, test yourself. 4. Ask help, if they dont know, give example, so all should see what issue
  9. You are very nice and best guys. Thanks. I love gsap not only for best performance, for best help forum.
  10. Hi. I'm in last time seen some amazing wave SVG with some sine named function, i am interested. But i haven't Club access. https://bannerwave.com/ In header as you see this too made with GSAP, so i interested and will be thankful if someone create simple, cleaner codepen demo (please without GSAP premium plug-ins). Second some wave sine amazing demo in GSAP morphSVG demo plug-in but not sure how to you're did it and how to use. Thanks.
  11. I glad you liked it. @PointC I know benefits of Club member, i am too one of fan of Club member (without money ). One of best benefits of Club member is: 1. morphSVG 2. drawSVG 3. physics2D/physicsProps 4. Draggable ThrowProps I too making some app and want to sell with bit higher price than GSAP. Now i looking for payment provider with secure form like. 1. Users buy 2. After success returns page with userID 3. Gets custom file. After my bussiness goes well, i'm too buy club member. Envato, ShapeBootstrap, etc... not worked for me as i don't know about design. Thanks for reply anyway.
  12. Hi everyone, do you want feel magic of GSAP's morphSVG? Or if you think about buy membership, but not sure, i sure, after see it you buy it in anyway. http://codepen.io/dalisoft/full/yVmLVO/ If you like it, please Like it. Thanks to @GreenSock for amazing library and all of helpers for fast reply
  13. I like your keeping code light and more useful, thanks for reply. I try to make it's, so i need powerful animation engine. You're best coder of javascript/AS. Thanks again.
  14. Cycle is for per-element only for property such as "x, y, morphSVG, etc" as i know about GSAP.
  15. Hi! I'm today trying to get something, but i'm failed. I did own javascript animation platform, that can do part of thing of GSAP! But i need "In-Sync" tweening, basic users don't need that, but for sliders, tab-changed, Timeline GSAP script is best working. Missing some feature i need. TweenMax.to('#element', 1, { width : 200, height : 200, x : 100, ease : { width : 'QuadInOut', height : 'ExpoInOut' }}); // these syntax is for example, maybe have wrong syntax, sorry I can create this plug-in (pls let me read useful docs for creating plugin) and have already? It's reduces memory, CPU and size too. Thanks, Any reply appreicate. Sorry for english
  16. Hi @GreenSock. I'm finally completed the all of stuff that need on web, i'm hope you like it, because it's inspired by GSAP. https://github.com/dalisoft/Unim.js Also, check credits and you'll see GSAP in the first. Thanks for watch/see
  17. Hi @ice-frog. I'm making (originally forking from tween.js, GitHub) and improving for modern web, but never i can't will be as GSAP, here i write some pros/cons. Sorry for bad english. GSAP: [PROS] * Accurate timer in the all of tweening engine * Easier syntax * Higher performance, no any tweening engine match GSAP performance ( even me ) * Lower System Resource / Reduced, almost no Garbage Collection / Very low Memory Usage ( test yourself ) * Limitless feature such as MorphSVG, DrawSVG, Physics * Amazing cross-browser and cross-device support * And more and more [CONS] * It's not cons, but some plug-ins requires Club Member, as i mention, "In life nothing free" Popmotion [PROS] * Good performance * Many features * IE9+ works fine, but for Android 2.3.3, 2.3.6 doesn't work properly * And more and more [CONS] * Long syntax codes * Sometime FPS drops * In demos used not a real javascript language as not worked on my PC when tested with Notepad++ ( Need fix ) * Timing goes wrong when tab re-focus I think it's enough, so thanks for reading. Let me know if i wrong
  18. In your pen TweenMax not loaded, you can add TweenMax via Settings of your pen. Thanks, @dalisoft
  19. Hi, maybe you trying to make text animating like on the site? Here i did for my project, http://dalisoft.github.io/Unim.js/demo/sequence.html. Use it with source. NOTE: GSAP can do this + can do anything, that needs on the Web animations. I highly recommend in there and my project header to use GSAP for High-performance + Stable animation (no fps drop) and Limitless feature. Thanks.
  20. Good way protect your code is give them license like GPLv3 with your note that restricted to copy. But i don't sure, it works or no. Script encoders is slow-down PC and Animations too, no matter with what engine/animation maked. Many advanced dev's knows how-to decode code without leaving current tab, i seen like that like hackers, but i'm not one. But Thanks to GSAP, i did own many libraries and projects. Thanks
  21. Thanks. it's made in 2013year about November-December. Now i working on other project.
  22. Hi @GreenSock. You said me, that i not use GSAP anyway, you wrong. I use GSAP from 2013year. Here you can excite some of my work with GSAP I have demos http://shavkatoff.ru/demos/spring/
  23. Nothing best, just want to start my own js. Thanks
  24. I no seen there extra feature than GSAP. I just want start my code. No other reason. Thanks. I'm upload demo with GSAP as soon as possible.
×
×
  • Create New...