jquery - CSS3 - transform:translateY( out of screen ) -
i trying add slide down.
and adding starting position:
transform:translatey(200%)
which works fine if scroll area not big.
transform:translate(-200%)
works better because moves relative top , part can't grow.
is there way around this?
using
transform: translatey(50000px);
and potentially affect animations have move on larger areas.
what approach problem?
---------- edit -----------
actually, appears if scrolling area getting larger larger translatey meaning never gets out of viewport, might problem here. not sure how resolve though.
it appears if
translate3d(-100%, 100%, 0);
resolves issue.
Comments
Post a Comment