Is there a picture grow and shrink in articulate 360

Jan 02, 2020

Hi

Can anyone help

Is there a picture grow and shrink feature (as in powerpoint)  I would like full screen pictures to grow or shrink by about 10-20% (with timing of about 5sec.) after they appear on the screen. Could anyone advise me how this (if it can) can be done.  Thanks Trevor

1 Reply
Phil Mayor

You couldd use this javascript:

var item = $('[aria-label="yourName"] svg') $(item).animate({ 'width': '+=20', 'height': '+=20', 'left': '-=10', 'top': '-=10' }, function() { $(item).animate({ 'width': '-=20', 'height': '-=20', 'left': '+=10', 'top': '+=10' }) });

Set the trigger to fire when timeline reaches 5 seconds. You will also need to set the aria-label (yourName) to whatever you have it as in your project. This will just increase by 20 pixels and decrease by 20 pixels. You can mess around to get what you need.

This discussion is closed. You can start a new discussion or contact Articulate Support.