• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Tweening a blur using script

New Here ,
Oct 02, 2020 Oct 02, 2020

Copy link to clipboard

Copied

I need to unblur an image over time. It doesn't seem you can get it done using Animate's filter feature, so I've looked into doing it via script and CreateJS commands.

 

I'm probably doing something wrong, but here below is a simple piece of code I've tried - it doesn't work though: the image is blurred and remains blurred, nothing is happening. 

 

var blurFilter = new createjs.BlurFilter(5, 5, 1);
this.myimage.filters = [blurFilter];

createjs.Tween.get(this.myimage.filters)
.wait(150)
.to({blurX:0,blurY:0}, 500, createjs.Ease.cubicInOut);

 

Views

210

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 02, 2020 Oct 02, 2020

Copy link to clipboard

Copied

LATEST

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines