Jump to content
Search Community

shared

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

shared's Achievements

0

Reputation

  1. Hi ! I got this simple JS lines tl = new TimelineLite(); tl .from(A_shape_intro, 2, {scale:4, ease:Expo.easeOut}) <--- this line is not working .call(runTimelineAnim, [arrayAnim, runingPattern]) .staggerTo("#logo svg:not(svg[data-elem='A_shape2'])", 1, {opacity:1, top:0, ease:Expo.easeOut}, 0.2, "+=1.5"); SCSS svg[data-elem="A_shape_intro"]{ top:0; transform:scale(1); opacity:1; } Problem: My "A" svg shape is suposed to scale out from 4 to 1, but there is nothing animated, the A apeared scale to "1" value without any animation. It used to work, but for some reasons its not working anymore. Why ? PS: the console is clean, no JS errors.. Thanks for answering me ASAP !
  2. Hi, Thanks for answering me, i'm actually busy with another project, I'll try next week. I keep you in touch.
  3. Hi, DOM elements are loaded with twig (on symfony 3) tl = new TimelineLite(); tl .to(A_shape_intro, 2, {opacity:1, scale:1, ease:Expo.easeOut}) .add(runTimelineAnimSVG(arrayAnim, runingPattern)) .staggerFrom($("#logo svg"), 1, {opacity:0, top:-30}, 0.1); .to is executed well, .add and the function runTimeLineAnimSVG is executed well .staggerFrom is not working I got the error : uncaught exception: Cannot add undefined into the timeline; it is not a tween, timeline, function, or string and .staggerFrom is not triggered What's the problem ? Thanks
×
×
  • Create New...