rstacruz / jquery.transit

Super-smooth CSS3 transformations and transitions for jQuery
http://ricostacruz.com/jquery.transit
7.29k stars 864 forks source link

external styles #121

Closed zh99998 closed 7 years ago

zh99998 commented 11 years ago

there is a box

<div class="box"></div>

it has some static(will not change in page) transform style, defined in .css files, like

.box {
  scale(2,2);
}

well, then if i try to add a transform animate to it

$('.box').transition({
  perspective: '100px',
  rotateX: '180deg'
});

ohh..then the old scale transform will disappear...

rstacruz commented 11 years ago

Can you post a codepen.io example?

maroun-baydoun commented 11 years ago

Having the exact same issue right now

rstacruz commented 11 years ago

I see, I think I see what can happen here. If anyone can help put together a patch, that'd be much appreciated.

zh99998 commented 7 years ago

closing this since long time inactive