简体   繁体   中英

3D effect jquery css3

I must cake a simple 3D effect with jQuery and css3.

Actually I cook this http://www.agencevolt.fr/milestone-nicolas/ and I use perspective and rotateY , rotateX on <div class="container"> and I use an parallax effect on <img> . But I can't reach an deep effect. I used a "trick" to resize width of pictures on a new version, but it's "ugly". Do you have an idea on how to make this work?

You will need to remove

overflow: hidden; 

from the container and add on the container

transform-style:preserve-3d;

then on images play with

transform:translate3d(x,y,z)

something like

transform:translate3d(0,0,100px)

should solve it ;)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM