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

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -