blob: b14ff82efa1fe7edc817a80a30396fd3288f1289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<head>
<style>
body {
border: 0px;
margin: 0px;
padding: 0px;
}
img {
width: 100px;
height: 100px;
transform-origin: 0 0 0;
}
</style>
</head>
<body>
<img src="blue-square-in-square.svg">
<script>
var scales = location.search.substring(1).split("&");
var xScale = scales[0];
var yScale = scales[1];
// Create a style representing a 2d transform.
var style = 'transform: matrix(' + xScale + ', 0,' +
'0, ' + yScale + ',' +
'0, 0);';
// Apply the style to the image.
var img = document.getElementsByTagName("img")[0];
img.style = style;
</script>
</body>
|