Jump to content
Search Community

Web Dizajner

Members
  • Posts

    130
  • Joined

  • Last visited

Posts posted by Web Dizajner

  1. It will be nice GreenSock-ified version of Edge Animate which is discontinued. Anyway, is the big difference between TweenMax any Edge Animate libs? I dont understand status of Edge Animate, I am using it every day and it is work perfect but in other side is dead?

  2. @Web Dizajner

     

    - I use a tool called Ease Caddy made by Justin Putney over at Ajar Productions.

     

    Yes I know, I am using that plugin, I have my custom XML file with almost all eases for that plugin, I am using free version then I am importing my XML. http://www.marjantrajkovski.com/html5-banners-templates/myEases.xml

     

    2 Problems

     

    1. Eases are not optimised, they are not functions, in final code you dont have e.g.

     

    this.timeline.addTween(cjs.Tween.get(this.instance_1).to({x:160,y:85},19,cjs.Ease.cubicInOut.wait(1));

     

    but

     

    this.timeline.addTween(cjs.Tween.get(this.instance).wait(1).to({x:-30.8},0).wait(1).to({x:-28.6},0).wait(1).to({x:-25.2},0).wait(1).to({x:-20.3},0).wait(1).to({x:-13.2},0).wait(1).to({x:-3.4,y:170.1},0).wait(1).to({x:10.2},0).wait(1).to({x:28.9,y:170.2},0).wait(1).to({x:53.5},0).wait(1).to({x:81,y:170.3},0).wait(1).to({x:105.1,y:170.4},0).wait(1).to({x:123.2},0).wait(1).to({x:136},0).wait(1).to({x:145,y:170.5},0).wait(1).to({x:151.3},0).wait(1).to({x:155.5},0).wait(1).to({x:158.1},0).wait(1).to({x:159.6},0).wait(1).to({x:160},0).wait(1));

     

    2.

    Most important for me, values can not be in minus and plus and then you can not create type of eases like Back and Elastic.
  3. For me, for now, there are only two things which I dont like in work with Animate CC.

     

    1. CANVAS (Animate CC) vs DOM (Edge Animate).

     

    For now, Canvas tecnology is not full ready for overall audience. Canvas animations are slow on 2/3 overall computers.

    Computers of designer and developers are more stronger than computers of ordinary users of web.

    We must wait few years for stronger overall computers.

     

    2. Easing functions which exist in CreateJS are still not addopted in GUI of Animate CC for classic tweens.

     

    We need something like this

    w1hh1ajjpj4x.jpg

  4. Why make things easy, when you can make them complicated :)

     

    1. Open Animate CC 2017

    ---------------------------------------------------------------------------------------------------------------------------------------------

    2. Create new document

    ---------------------------------------------------------------------------------------------------------------------------------------------

    3. Export default template ( FILE > PUBLISH SETTINGS > ADVANCED > EXPORT )

    ---------------------------------------------------------------------------------------------------------------------------------------------

    4. Change few things in exported template (html file):

     

    In <head> section add five lines:

     

    <meta name="ad.size" content="width=$WT,height=$HT">
    <script>var clickTag = "http://www.example.com"; </script>
     
    and clear one line:
     
    $CREATEJS_LIBRARY_SCRIPTS
     
    ---------------------------------------------------------------------------------------------------------------------------------------------
    5. Import changed template ( FILE > PUBLISH SETTINGS > ADVANCED > IMPORT NEW )
    ---------------------------------------------------------------------------------------------------------------------------------------------
    6. Addionaly change few things in publish settings:
     
    I personally like to merge HTML and JavaScript in one single file
    ( FILE > PUBLISH SETTINGS > ADVANCED > INCLUDE JAVASCRIPT IN HTML )
     
    I personally like to have exported images in same folder with html file, without subfolder images
    ( FILE > PUBLISH SETTINGS > BASIC > EXPORT IMAGE ASSETS > UNCHECK FOLDER ICON (Toggle of...) )
     
    I personally like to be responsive especially for mobile devices
    ( FILE > PUBLISH SETTINGS > BASIC > MAKE RESPONSIVE > BOTH )
     
    ---------------------------------------------------------------------------------------------------------------------------------------------
    7. Create invisible button on top of document with full size of document and give it instance name, example: exit
    ---------------------------------------------------------------------------------------------------------------------------------------------
    8. Open Actions window ( WINDOW > ACTIONS ) and write code:
     
    this.exit.on("click", function () {
    window.open(window.clickTag, '_blank')
    });
     
    ---------------------------------------------------------------------------------------------------------------------------------------------
    9. Save template for further use ( FILE > SAVE AS TEMPLATE ) or just save file somewhere on your disc
    ---------------------------------------------------------------------------------------------------------------------------------------------
     
     
    You dont need AdHelper - I realy dont know purpose, maybe to be smart guy
    because why make things easy, when you can make them complicated :)
    • Like 4
  5. You are free to use my templates for Animate CC 2017 http://www.marjantrajkovski.com/html5-banners-templates/html5-banners-templates.zip

     

     

    If you are using GSAP:

     

    1. Open GSAP template

     

    2. Change the size of banner in properties

     

    3. Create movie clip with instance name e.g txt1 which is ID for GSAP

     

    4. Open action panel and create GSAP animation e.g.:


    tl = new TimelineMax();
    tl.from(this.txt1, 1, {x:-100, ease:Back.easeOut});

     

    5. Save with your custom name e.g. mybanner and publish

    • Like 2
  6.  

    Have dynamic text? Doing a programmatic banner?

    - DOM✔️: Animate CC can’t embed fonts just yet (because of font rights I’m guessing?), only uses TypeKit fonts (I could be wrong though). I haven’t even tried it in Animate CC because the DOM makes more sense in those cases.

     

    Animate CC 2017 use Google Fonts.

    • Like 1
×
×
  • Create New...