morpheus icon indicating copy to clipboard operation
morpheus copied to clipboard

A Brilliant Animator

Results 14 morpheus issues
Sort by recently updated
recently updated
newest added

testcase: http://jsfiddle.net/qz5jcoaw/ seems to originate from https://github.com/ded/morpheus/blob/master/morpheus.js#L369 possible fix: change: (https://github.com/ded/morpheus/blob/master/morpheus.js#L367) ``` javascript typeof tmp == 'string' && tmp.charAt(0) == '#' ? ``` to: ``` javascript typeof tmp == 'string'...

I wrote the following code: var anim = morpheus([el, el2], { left: 50+"%", top: 50+"%" }); Then I had run it in Chrome and inspected el and el2 with the...

i think adding delay to animations will be nice feature or is there any possible solution for this?

I haven't tested all of them, but I believe this should completely fix issue #45 All tests pass, and all the examples seem to work the same. Rather than hacking...

I have extracted code from my actual implementation to create this JSFiddle to illustrate the problem: http://jsfiddle.net/sauy7/MEGu6/14/ It's a little messy but hopefully understandable enough. When I run this fiddle...

@rvagg, was thinking about your feature detect for the `window.performance` + `rAF` timers. If it simplifies things, I would be fine with deferring all morpheus starts until the first frame...

According to MDC (https://developer.mozilla.org/en-US/docs/CSS/transform) here are the CSS transforms that morpheus is currently missing: scaleX, scaleY, skewX, skewY, translateX, translateY, matrix, matrix3d, translate3d, translateZ, scale3d, scaleZ, rotate3d, rotateX, rotateY, rotateZ,...

Heyo, I'd like to gather some thoughts on having a deferred interface for Morpheus would look like. I had some thoughts... the first seems most attractive, however it's not necessarily...

even though IE9 has the support for transforms "-ms-transform: rotate(45deg);", they don't work with transitions, but it would be cool if morpheus could step in on that.