-
Notifications
You must be signed in to change notification settings - Fork 0
/
resize.js
79 lines (71 loc) · 1.52 KB
/
resize.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
var imageHeight;
var imageWidth;
var flag;
function init()
{
// Flag=0 means Original
// Flag=1 means Resized
flag=0;
imageWidth = $("mainphoto").width;
imageHeight = $("mainphoto").height;
if(imageWidth>(screen.width-400))
{
imageHeight = $("mainphoto").height;
toggleSize();
}
if(imageHeight>(screen.Height-400))
{
imageWidth = $("mainphoto").width;
toggleSize();
}
toggleSizeImg();
}
function toggleSizeImg()
{
if(imageHeight>(screen.height-400))
{
toggleSizeHeight();
}
}
function toggleSize()
{
if(flag==0)
{
// Get image aspect ratio
var ratio = (imageWidth/imageHeight);
var newWidth = (screen.width-400);
var newHeight = (screen.width-400)/ratio;
$("mainphoto").height=newHeight;
$("mainphoto").width=newWidth;
$("sizeChanger").innerHTML="Click to View Full Size";
flag=1;
}
else
{
$("mainphoto").height=imageHeight;
$("mainphoto").width=imageWidth;
$("sizeChanger").innerHTML="Click to Resize Image";
flag=0;
}
}
function toggleSizeHeight()
{
if(flag==0)
{
// Get image aspect ratio
var ratio = (imageHeight/imageWidth);
var newHeight = (screen.height-400);
var newWidth = (screen.height-400)/ratio;;
$("mainphoto").height=newHeight;
$("mainphoto").width=newWidth;
$("sizeChanger").innerHTML="Click to View Full Size";
flag=1;
}
else
{
$("mainphoto").height=imageHeight;
$("mainphoto").width=imageWidth;
$("sizeChanger").innerHTML="Click to Resize Image";
flag=0;
}
}