Jeremie Ges
Jeremie Ges

Reputation: 2745

Make an 3d effect with jquery

When i was surfing on the internet, i saw this : http://www.enter-the-void.co.uk/#/menu Have you got an idea about make this with jquery / html5 ?

Thank you in advance.

EDIT :

Finally i think the best way is use this method :

What do you think ?

Upvotes: 3

Views: 1042

Answers (4)

mons droid
mons droid

Reputation: 1076

Like rory mccrossan said in the comment.

check for jquery parallax, thats exactly what happens on the into the void site.

put your divs on differnt parallax layers and see the magic happen ;-)

http://stephband.info/jparallax/

https://github.com/IanLunn/jQuery-Parallax

http://www.sequencejs.com/themes/sliding-horizontal-parallax/

Upvotes: 0

cliffbarnes
cliffbarnes

Reputation: 1406

Obviously, there are several creative way to get at this. BUT, as of right now, no browser supports 3d rendering natively. However, webkit, opera, and mozilla do support 2d rendering

What this means is that through javascript and css solely you can create the appearance of 3d. But beyond what has been already mentioned (WebGL, three.js library, canvas tricks), no browser supports 3d rendering.

Read my year old blog post about this: Simple '3D' Rendering With CSS3 and Javascript

Upvotes: 1

Dreen
Dreen

Reputation: 7226

Off the top of my head, Three.js could help you with that. Its a javascript library for rendering 3D objects. The objects themselves wouldn't be too hard I guess; a bunch of flat surfaces with custom textures. The camera might be harder to accomplish though.

Upvotes: 1

mohammad mohsenipur
mohammad mohsenipur

Reputation: 3149

You Can Use Webgl or canvas for Make This Effect

Upvotes: 0

Related Questions