move.js icon indicating copy to clipboard operation
move.js copied to clipboard

add rotateX and rotateY api

Open Gitsifu opened this issue 4 years ago • 2 comments

Gitsifu avatar Oct 19 '20 13:10 Gitsifu

Seems okay to me. Anyone else having thoughts?

axelpale avatar Oct 19 '20 15:10 axelpale

            move('.square')
                    .set('background-color', 'red')
                    .duration(1000)
                    .end(function(){
                        move('.square')
                                .set('background-color', 'blue')
                                .duration(1000)
                                .end();
                    });

The above writing method is changed to the following writing method. Now it has no effect. Can it be made effective?

            move('.square')
                    .set('background-color', 'red')
                    .duration(1000)
                    .set('background-color', 'blue')
                    .duration(1000)
                    .end();

Gitsifu avatar Oct 20 '20 02:10 Gitsifu