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

Tweening a blur using script

New Here ,
Oct 02, 2020 Oct 02, 2020

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);

 

290
Translate
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
LATEST
Translate
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