OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <body style='margin:0px'> | |
4 <img id='sizer'/> | |
5 <script> | |
6 // The desired size should be specified in the url in the search portion | |
7 // like this ?widthDimension:heightDimension. | |
8 var unitMatch = '([0-9]+[a-zA-Z]+)'; | |
9 var searchParser = new RegExp('\\?' + unitMatch + '(?:\\:' + unitMatch + ')'); | |
10 var parsedParameters = searchParser.exec(window.location.search); | |
11 | |
12 // Set the sizes. | |
13 var elementToSize = document.getElementById('sizer'); | |
14 var width = parsedParameters[1]; | |
15 elementToSize.style.width = width; | |
16 var height = parsedParameters[2]; | |
17 elementToSize.style.height = height; | |
18 </script> | |
19 </body> | |
20 </html> | |
OLD | NEW |