0
votes
1answer
363 views

Change perpective angle/origin 3d-css on mouse move

I'm trying to get the perspective view-angle with the following, of a cube: http://jsfiddle.net/TrySpace/JvFSQ/5/ But I doesn't do what I expected, I want the actual view-angle to be changed. So ...
6
votes
1answer
1k views

Perspective transform of SVG paths (four corner distort)

How is it possible to distort paths in SVG in browser so that they are distorted to certain perspective using possibly javascript or css? The perspective distort can be made easily in Photoshop, ...
1
vote
1answer
166 views

Why can't I hide a div by CSS “-webkit-transform: rotateY(90deg);”?

<!DOCTYPE html> <meta charset="utf-8"> <title>An HTML Document</title> <style> #container { -webkit-perspective: 300px; -moz-perspective: 300px; } ...
2
votes
2answers
115 views

Using units on CSS perspective

Just a quick question to clear up some confusion that I have regarding units on CSS perspective. On the CSS Transforms spec it references it with px e.g. perspective: 1000px; but I have used and in ...
2
votes
1answer
362 views

CSS3 perspective in 3D

I'm having a problem with CSS 3D perspective property. <figure> <img src="http://www.saintbioz.fr/wp-content/uploads/2010/02/paysage-montagneux.jpg" width="512" height="384" ...
0
votes
4answers
151 views

CSS 3d perspective off

i'm trying to get a hang off the 3d transform functions in css. My code at this point is pretty much copied straight from a tutorial because no matter how hard i try i just cant seem to get it working ...
2
votes
2answers
168 views

What is the formula for proportions of elements using perspective and translateZ?

I would like to do the following: Given a container with perspective and an inner element with a translateZ value I'd like to "pull it up" with translateY in order to visually touch the top of the ...
1
vote
1answer
1k views

css 3d perspective not showing up correctly in certain browsers

I have a bunch of images I've set up in css to appear as a 3d stack. It shows up correctly in Safari all the time (pc or mac) but only sometimes in Chrome. I haven't put in the Moz stuff so it ...
13
votes
1answer
751 views

Calculate absolute dimensions of a div rotated in perspective with css3

lets say we have a div with 500x500px size and we rotate it on the x axis via css 45 degrees considering a webkit-perspective value of 1600px. How would you calculate the absolute dimensions of the ...
0
votes
1answer
225 views

Determine the visual size of an object at a given distance from origin (using perspective)

Let's say we have a square, 50 pixels wide. And the -webkit-perspective is 1000px*. What is the formula to determine how big the square will appear to be at a given distance from the viewer (the ...