Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use scale with -moz-transform?

Any body has a Good example showing how to use scale with -moz-transform ?

like image 639
Mithun Sreedharan Avatar asked Jul 20 '10 10:07

Mithun Sreedharan


People also ask

How do you use the scale rule?

Using a scale rule is pretty easy when you know how. When you are drawing a plan, you select the scale you intend to use by turn the ruler to the appropriate side. You can then draw the line to the desired measurement using the scale ruler.

What does a scale of 1 2 mean?

If the scale factor is a fraction, the shape will be smaller. This is called reduction. Therefore, a 1/2 scaling factor means that the new shape is half of the original shape.

How do you use the scale rule 1 50?

The ratio is marked at the left end of the scale. For example, the scale of 1:50 means that 1 mm on the drawing represents 50 mm on the object. This means that the object is 50 times larger than the drawing of it. An object 450 mm long would be represented by a line 9 mm long (450 mm/50).

How do you read a 1/2 scale?

Half Size. The principle of half size measurements on a drawing is simply letting a unit, such as 1/2” on the scale, represent a larger unit such as 1” on the drawing. If the drawing is properly labeled, the words HALF SIZE or 1/2″= 1′ will appear in the title block.


1 Answers

The MDC page you linked to actually explains it pretty well.

I made you a quick example. Demo: http://jsfiddle.net/SZ87b/1/ Code:

<!doctype html>
<title>-moz-transform scale example</title>
<style>
 p { font-size: 5em; text-align: center; }
 p:hover { -moz-transform: scale(2); }
</style>
<p>Foo bar</p>
like image 137
Mathias Bynens Avatar answered Oct 05 '22 11:10

Mathias Bynens