Test Plan: Ran the test. Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: davidedmundson, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D16097remotes/origin/davidedmundson/faster_props
parent
51a727fc6b
commit
b9653b4e95
3 changed files with 25 additions and 0 deletions
@ -0,0 +1,21 @@ |
||||
effects['desktopChanged(int,int)'].connect(function(old, current) { |
||||
var stackingOrder = effects.stackingOrder; |
||||
for (var i=0; i<stackingOrder.length; i++) { |
||||
var w = stackingOrder[i]; |
||||
//1 second long random animation, marked as fullscreen
|
||||
w.anim1 = animate({ |
||||
window: w, |
||||
duration: 1000, |
||||
fullScreen: true, |
||||
animations: [{ |
||||
type: Effect.Scale, |
||||
curve: Effect.GaussianCurve, |
||||
to: 1.4 |
||||
}, { |
||||
type: Effect.Opacity, |
||||
curve: Effect.GaussianCurve, |
||||
to: 0.0 |
||||
}] |
||||
}); |
||||
} |
||||
}); |
||||
Loading…
Reference in new issue