-
Notifications
You must be signed in to change notification settings - Fork 0
/
until_body.html
68 lines (56 loc) · 1.31 KB
/
until_body.html
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
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' type='text/css' href='http://bidouillage.e-monsite.com/medias/files/bootstrap.css' />
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script>
function showNextRow() {
var currentrow = 0;
$('table tr').hide();
$('table tr:eq(0)').show();
$('#onemore').click(
function() {
currentrow++;
/*$(document.getElementById('myBar')).hide();*/
$('table tr:eq(' + currentrow + ')').show();
window.scrollTo(0,document.body.scrollHeight);
}
);
}
function move() {
var elem = document.getElementById('myBar');
var width = 10;
var id = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(id);
}
else
{
width++;
elem.style.width = width + '%';
elem.innerHTML = width * 1 + '%';
}
}
}
</script>
<style>
body {
background-color: black;
color: white;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: pink;
}
::-moz-placeholder { /* Firefox 19+ */
color: pink;
}
:-ms-input-placeholder { /* IE 10+ */
color: pink;
}
:-moz-placeholder { /* Firefox 18- */
color: pink;
}
</style>
</head>
<!--<body onload='move(); showNextRow();'>-->