summaryrefslogtreecommitdiff
path: root/tests/html/source/scripts/top.js
blob: dc9c9772c8834c3a3b58f0cc254355de465d8672 (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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// If any value in the 'select' list(s) changes, the corresponding
// HTML document is loaded in frame_1.
function change() {
	var dpi = document.getElementById('dpi').value;
	var font = document.getElementById('font').value;
	var mode = document.getElementById('mode').value;
	var size = document.getElementById('size').value;
	var frame = document.getElementById('frame_1');
  var string = "pages/"+dpi+"/"+font+"/"+mode+"/"+size+"/index.html";
  frame.src = string;
}
// Function to sort the columns of the table when you click on the header
var people, asc1 = 1,asc2 = 1,asc3 = 1;

function sort_t(tbody, col, asc){
  var rows = tbody.rows, rlen = rows.length, arr = new Array(), i, j, cells, clen;
  // fill the array with values from the table
  for(i = 0; i < rlen; i++){
  cells = rows[i].cells;
  clen = cells.length;
  arr[i] = new Array();
      for(j = 0; j < clen; j++){
      arr[i][j] = cells[j].innerHTML;
      }
  }
  // sort the array by the specified column number (col) and order (asc)
  arr.sort(function(a, b){
      return (a[col] == b[col]) ? 0 : ((a[col] > b[col]) ? asc : -1*asc);
  });
  for(i = 0; i < rlen; i++){
      arr[i] = "<td>"+arr[i].join("</td><td>")+"</timaged>";
  }
  tbody.innerHTML = "<tr>"+arr.join("</tr><tr>")+"</tr>";
}
// Function to change the source of the background image in the iframe
// (frame_2). This function also fits the division according to the
// size of the iframe such that the background image fits in the frame.
function frame_2_source(image){
  var path = "url("+image.src+")";

  var fr_2 = parent.frame_2.document;

  // Division whose background image is the sprite
  var div = fr_2.getElementById('animation');
  div.style.backgroundImage=path;

  // To get the dimensions of the image file
  var new_image = new Image();
  new_image.src = image.src;

  var src_w = new_image.width;
  var src_h = new_image.height;

  //Using dimensions of the iFrame
  var win_w = window.innerWidth;
  var win_h = window.innerHeight-40;

  // r_w and r_j represent the maximum times that the width or the
  // height can be multiplied so that we get the maximum image size
  // possible without exceeding the iFrame dimensions and maintaining
  // aspect ratio.
  var r_w = (win_w/(src_w/4)).toString();
  r_w = parseInt(r_w);

  var r_h = (win_h/src_h).toString();
  r_h = parseInt(r_h);

  var div_w = 0;
  var div_h = 0;

  if (r_w > r_h)
  {
    div_w = src_w * r_h;
    div_h = src_h * r_h;
  } else {
    div_w = src_w * r_w;
    div_h = src_h * r_w;
  }
  // Setting the division width and height.
  div.style.width= div_w/4 + "px";
  div.style.height= div_h + "px";
}
// Functions to trigger the corresponding animations.
function class_one_two(){
  var div = frame_2.document.getElementById('animation');
  div.className = 'animation one_two';
}

function class_one_three(){
  var div = frame_2.document.getElementById('animation');
  div.className = 'animation one_three';
}

function class_one_four(){
  var div = frame_2.document.getElementById('animation');
  div.className = 'animation one_four';
}
// Functions for the 'Go to Top button'
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};

function scrollFunction() {
    if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
        document.getElementById("myBtn").style.display = "block";
    } else {
        document.getElementById("myBtn").style.display = "none";
    }
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
    document.body.scrollTop = 0;
    document.documentElement.scrollTop = 0;
}
// Function to pause/play the animation
function pause_play() {
	var div = frame_2.document.getElementById('animation');
	div.classList.toggle('pause');
}